/system/security/keystore2/test_utils/ |
D | authorizations.rs | 43 self.0.push(KeyParameter { tag: Tag::PURPOSE, value: KeyParameterValue::KeyPurpose(p) }); in purpose() 49 self.0.push(KeyParameter { tag: Tag::DIGEST, value: KeyParameterValue::Digest(d) }); in digest() 55 self.0.push(KeyParameter { tag: Tag::ALGORITHM, value: KeyParameterValue::Algorithm(a) }); in algorithm() 61 self.0.push(KeyParameter { tag: Tag::EC_CURVE, value: KeyParameterValue::EcCurve(e) }); in ec_curve() 67 self.0.push(KeyParameter { in attestation_challenge() 76 self.0.push(KeyParameter { in no_auth_required() 85 self.0.push(KeyParameter { in rsa_public_exponent() 94 self.0.push(KeyParameter { tag: Tag::KEY_SIZE, value: KeyParameterValue::Integer(s) }); in key_size() 100 self.0.push(KeyParameter { tag: Tag::BLOCK_MODE, value: KeyParameterValue::BlockMode(b) }); in block_mode() 106 self.0.push(KeyParameter { in cert_not_before() [all …]
|
D | lib.rs | 50 tmp.push(format!("{}_{:05}", prefix, number)); in new() 103 pub fn push(mut self, segment: &str) -> Self { in push() method 104 self.0.push(segment); in push()
|
/system/chre/util/tests/ |
D | priority_queue_test.cc | 68 EXPECT_TRUE(q.push(0)); in TEST() 69 EXPECT_TRUE(q.push(2)); in TEST() 70 EXPECT_TRUE(q.push(3)); in TEST() 71 EXPECT_TRUE(q.push(1)); in TEST() 73 EXPECT_TRUE(q.push(4)); in TEST() 79 q.push(1); in TEST() 81 q.push(2); in TEST() 90 q.push(1); in TEST() 92 q.push(2); in TEST() 103 q.push(1); in TEST() [all …]
|
D | array_queue_test.cc | 67 EXPECT_TRUE(q.push(1)); in TEST() 68 EXPECT_TRUE(q.push(2)); in TEST() 70 EXPECT_TRUE(q.push(3)); in TEST() 75 EXPECT_TRUE(q.push(0)); in TEST() 76 EXPECT_TRUE(q.push(1)); in TEST() 77 EXPECT_TRUE(q.push(2)); in TEST() 83 EXPECT_TRUE(q.push(3)); in TEST() 94 EXPECT_TRUE(q.push(4)); in TEST() 95 EXPECT_TRUE(q.push(5)); in TEST() 96 EXPECT_TRUE(q.push(6)); in TEST() [all …]
|
D | atomic_spsc_queue_test.cc | 72 q.producer().push(1); in TEST() 73 q.producer().push(2); in TEST() 77 q.producer().push(3); in TEST() 86 q.producer().push(1); in TEST() 88 q.producer().push(2); in TEST() 114 q.producer().push(e); in TEST() 115 q.producer().push(e); in TEST() 151 q.producer().push(i); in TEST() 170 q.producer().push(i); in TEST() 191 q.producer().push(0xd00d); in TEST() [all …]
|
D | blocking_queue_test.cc | 58 ASSERT_TRUE(blockingQueue.push(0x1337)); in TEST() 59 ASSERT_TRUE(blockingQueue.push(0xcafe)); in TEST() 72 ASSERT_TRUE(blockingQueue.push(std::move(ptr))); in TEST()
|
/system/media/audio_utils/tests/ |
D | build_and_run_all_unit_tests.sh | 23 adb push $OUT/data/nativetest/fdtostring_tests/fdtostring_tests /system/bin 27 adb push $OUT/system/lib/libaudioutils.so /system/lib 28 adb push $OUT/data/nativetest/primitives_tests/primitives_tests /system/bin 32 adb push $OUT/data/nativetest/power_tests/power_tests /system/bin 36 adb push $OUT/data/nativetest/channels_tests/channels_tests /system/bin 40 adb push $OUT/data/nativetest/string_tests/string_tests /system/bin 44 adb push $OUT/data/nativetest/format_tests/format_tests /system/bin 48 adb push $OUT/data/nativetest/simplelog_tests/simplelog_tests /system/bin 52 adb push $OUT/data/nativetest/statistics_tests/statistics_tests /system/bin 56 adb push $OUT/data/nativetest/timestampverifier_tests/timestampverifier_tests /system/bin [all …]
|
D | build_and_run_biquad_filter.sh | 26 adb push $ANDROID_BUILD_TOP/cts/tests/tests/media/audio/res/raw/sinesweepraw.raw $testdir 28 adb push $OUT/system/bin/biquad_filter $testdir
|
/system/tools/aidl/ |
D | run_integration_tests.sh | 30 adb push \ 33 adb push \ 36 adb push \ 39 adb push \ 42 adb push \ 45 adb push \
|
/system/security/keystore2/src/ |
D | legacy_blob.rs | 321 acc.push(c as char); in encode_alias() 324 acc.push((b'+' + (c >> 6)) as char); in encode_alias() 325 acc.push((b'0' + (c & 0x3F)) as char); in encode_alias() 343 s.push(m | (c - b'0')); in decode_alias() 348 s.push(c); in decode_alias() 615 params.push(p); in read_key_parameters() 853 path.push(format!("user_{}", user_id)); in list_legacy_keystore_entries_for_uid() 871 result.push( in list_legacy_keystore_entries_for_uid() 928 path.push(format!("user_{}", user_id)); in make_legacy_keystore_entry_filename() 929 path.push(format!("{}_{}", uid, encoded_alias)); in make_legacy_keystore_entry_filename() [all …]
|
/system/core/fastboot/fuzzer/ |
D | socket_mock_fuzz.cpp | 101 events_.push(Event(EventType::kSend, std::move(message), true, nullptr)); in ExpectSend() 105 events_.push(Event(EventType::kSend, std::move(message), false, nullptr)); in ExpectSendFailure() 109 events_.push(Event(EventType::kReceive, std::move(message), false, nullptr)); in AddReceive() 113 events_.push(Event(EventType::kReceive, "", true, nullptr)); in AddReceiveTimeout() 117 events_.push(Event(EventType::kReceive, "", false, nullptr)); in AddReceiveFailure() 121 events_.push(Event(EventType::kAccept, "", false, std::move(sock))); in AddAccept()
|
/system/core/fastboot/ |
D | socket_mock.cpp | 126 events_.push(Event(EventType::kSend, std::move(message), true, nullptr)); in ExpectSend() 130 events_.push(Event(EventType::kSend, std::move(message), false, nullptr)); in ExpectSendFailure() 134 events_.push(Event(EventType::kReceive, std::move(message), false, nullptr)); in AddReceive() 138 events_.push(Event(EventType::kReceive, "", true, nullptr)); in AddReceiveTimeout() 142 events_.push(Event(EventType::kReceive, "", false, nullptr)); in AddReceiveFailure() 146 events_.push(Event(EventType::kAccept, "", false, std::move(sock))); in AddAccept()
|
/system/libhidl/base/ |
D | TaskRunner.cpp | 37 mQueue->push(nullptr); in ~TaskRunner() 41 bool TaskRunner::push(const Task &t) { in push() function in android::hardware::details::TaskRunner 65 return this->mQueue->push(t); in push()
|
D | SynchronizedQueue.h | 42 bool push(const T& item); 86 bool SynchronizedQueue<T>::push(const T &item) { in push() function 91 mQueue.push(item); in push()
|
/system/extras/simpleperf/scripts/ |
D | report_html.js | 277 views.push(createViewCallback(div, gSampleInfo[0])); 284 views.push(createViewCallback(div.find(`#${subId}`), gSampleInfo[i])); 328 rows.push(['Record Time', gRecordInfo.recordTime]); 331 rows.push(['Machine Type', gRecordInfo.machineType]); 334 rows.push(['Android Version', gRecordInfo.androidVersion]); 337 rows.push(['Build Fingerprint', gRecordInfo.androidBuildFingerprint]); 340 rows.push(['Kernel Version', gRecordInfo.kernelVersion]); 343 rows.push(['Record cmdline', gRecordInfo.recordCmdline]); 345 rows.push(['Total Samples', '' + gRecordInfo.totalSamples]); 442 rows.push(['Event Type: ' + this.eventInfo.eventName, [all …]
|
/system/security/keystore2/tests/legacy_blobs/ |
D | keystore2_legacy_blob_tests.rs | 189 path_buf.push(".masterkey"); in keystore2_encrypted_characteristics() 195 path_buf.push("9910001_USRPKEY_authbound"); in keystore2_encrypted_characteristics() 206 path_buf.push(".9910001_chr_USRPKEY_authbound"); in keystore2_encrypted_characteristics() 213 path_buf.push("9910001_USRCERT_authbound"); in keystore2_encrypted_characteristics() 221 path_buf.push("9910001_CACERT_authbound"); in keystore2_encrypted_characteristics() 246 key_params.push(key_param); in keystore2_encrypted_characteristics() 295 key_params.push(key_param); in keystore2_encrypted_characteristics() 311 legacy_file_key_params.push(param.clone()); in keystore2_encrypted_characteristics() 440 path_buf.push(".masterkey"); in keystore2_encrypted_certificates() 446 path_buf.push("9810001_USRPKEY_authboundcertenc"); in keystore2_encrypted_certificates() [all …]
|
/system/chre/util/include/chre/util/ |
D | fixed_size_blocking_queue_impl.h | 60 bool BlockingQueueCore<ElementType, QueueStorageType>::push( in push() function 65 success = QueueStorageType::push(element); in push() 74 bool BlockingQueueCore<ElementType, QueueStorageType>::push( in push() function 79 success = QueueStorageType::push(std::move(element)); in push()
|
D | fixed_size_blocking_queue.h | 62 bool push(const ElementType &element); 63 bool push(ElementType &&element);
|
/system/libufdt/tests/ |
D | apply_overlay.sh | 54 adb push "${EXE_PATH}/${OVERLAY}_intermediates/${OVERLAY}" \ 99 adb push "$BASE_DTB" "$REMOTE_PATH" > /dev/null 100 adb push "$OVERLAY_DTB" "$REMOTE_PATH" > /dev/null
|
/system/chre/core/ |
D | event_ref_queue.cc | 29 bool EventRefQueue::push(Event *event) { in push() function in chre::EventRefQueue 32 bool pushed = mQueue.push(event); in push()
|
/system/extras/simpleperf/scripts/purgatorio/templates/ |
D | main.js | 119 table_source.data.thread.push(entry) 120 table_source.data.count.push(1) 121 table_source.data.index.push(table_source.data.thread.length) 165 node.children.push({name: entry, value:0, children:[]}) 203 callchain.push("<no callchain>") 206 callchain.push(thread)
|
/system/chre/ |
D | load_android_sim.sh | 19 adb push out/google_arm64_android_debug/libchre /system/bin/chre 20 adb push variant/android/chre-stub /vendor/bin/chre
|
/system/core/libutils/include/utils/ |
D | VectorImpl.h | 79 void push(); 80 void push(const void* item); 166 void push(); 167 void push(const void* item);
|
/system/core/libutils/binder/include/utils/ |
D | VectorImpl.h | 79 void push(); 80 void push(const void* item); 166 void push(); 167 void push(const void* item);
|
/system/librustutils/system_properties/ |
D | parsers_formatters.rs | 51 token.push(value); in parse_list_with() 56 result.push(f(token.as_str())?); in parse_list_with() 108 result.push(','); in format_list_with()
|