/system/extras/memory_replay/traces/ |
D | README | 27 Allocation made by malloc(<size>). <ptr> is the value returned by malloc. 34 Allocation made by calloc(<nmemb>, <size>. <ptr> is the value returned 43 to indicate a realloc with a nullptr. <new_ptr> is the value returned 52 returned by memalign.
|
/system/core/fs_mgr/libsnapshot/libsnapshot_cow/ |
D | cow_decompress.cpp | 181 size_t returned = max_ignore - z_.avail_out; in PartialDecompress() local 182 CHECK_LE(returned, ignore_bytes_); in PartialDecompress() 184 ignore_bytes_ -= returned; in PartialDecompress() 203 size_t returned = output_buffer_remaining_ - z_.avail_out; in PartialDecompress() local 204 CHECK_LE(returned, output_buffer_remaining_); in PartialDecompress() 206 output_buffer_ += returned; in PartialDecompress() 207 output_buffer_remaining_ -= returned; in PartialDecompress()
|
/system/hardware/interfaces/net/netd/1.1/ |
D | INetd.hal | 22 * This is the root of the HAL module and is the interface returned when 30 * @param networkHandle Handle to the OEM network previously returned from 53 * @param networkHandle Handle to the OEM network previously returned from 75 * @param networkHandle Handle to the OEM network previously returned from 87 * @param networkHandle Handle to the OEM network previously returned from
|
/system/tools/aidl/tests/ |
D | aidl_test_client_parcelables.cpp | 82 SimpleParcelable out_param, returned; in TEST_F() local 83 Status status = service->RepeatSimpleParcelable(input, &out_param, &returned); in TEST_F() 86 EXPECT_EQ(input, returned) << input.toString() << " " << returned.toString(); in TEST_F() 92 GenericStructuredParcelable<int32_t, StructuredParcelable, IntEnum> input, out_param, returned; in TEST_F() local 95 Status status = cpp_java_tests->RepeatGenericParcelable(input, &out_param, &returned); in TEST_F() 98 EXPECT_EQ(input, returned); in TEST_F() 122 PersistableBundle empty_bundle, returned; in TEST_F() local 123 Status status = cpp_java_tests->RepeatPersistableBundle(empty_bundle, &returned); in TEST_F() 125 EXPECT_EQ(empty_bundle, returned); in TEST_F() 131 PersistableBundle non_empty_bundle, returned; in TEST_F() local [all …]
|
D | aidl_test_client_ndk_parcelables.cpp | 67 SimpleParcelable out_param, returned; in TEST_F() local 68 auto status = getService<ITestService>()->RepeatSimpleParcelable(input, &out_param, &returned); in TEST_F() 71 EXPECT_EQ(input, returned) << input.toString() << " " << returned.toString(); in TEST_F()
|
/system/logging/liblog/ |
D | README.md | 129 The value returned by `android_logger_open()` can be used as a parameter to the 132 The value returned by `android_logger_open()` can be used as a parameter to the 140 If messages fail, a negative error code will be returned to the caller. 160 Other return codes from writing operation can be returned. Since the library retries on `EINTR`, 161 `-EINTR` should never be returned.
|
/system/libhidl/transport/memory/token/1.0/ |
D | IMemoryToken.hal | 23 * The returned instance of memory must always be a reference to the same memory.
|
/system/libhidl/transport/base/1.0/ |
D | types.hal | 20 * The returned object for getDebugInfo.
|
D | IBase.hal | 64 * object (the first element of the vector returned by 84 * @param cookie a cookie that must be returned with the callback
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestServiceClient.java | 373 GenericStructuredParcelable<Integer, StructuredParcelable, Integer> returned = in testRepeatGenericParcelable() local 377 assertThat(returned.a, is(input.a)); in testRepeatGenericParcelable() 378 assertThat(returned.b, is(input.b)); in testRepeatGenericParcelable() 398 SimpleParcelable returned = service.RepeatSimpleParcelable(input, out_param); in testRepeatParcelable() local 400 assertThat(returned, is(input)); in testRepeatParcelable() 423 PersistableBundle returned = cpp_java_tests.RepeatPersistableBundle(emptyBundle); in testRepeatEmptyPersistableBundle() local 424 assertThat(returned.size(), is(emptyBundle.size())); in testRepeatEmptyPersistableBundle() 425 assertThat(returned.toString(), is(emptyBundle.toString())); in testRepeatEmptyPersistableBundle()
|
/system/chre/apps/nearby/location/lbs/contexthub/nanoapps/nearby/proto/ |
D | ble_filter.proto | 50 // Public credential returned in BleFilterResult. 100 // FilterResult is returned to host when a BLE event matches a Filter.
|
D | nearby_extension.proto | 168 // Value from enum chrexNearbyResult that was returned from OEM library. 181 // Error code returned to OEM services. 281 // Event code returned to host.
|
/system/libhidl/transport/token/1.0/ |
D | ITokenManager.hal | 31 * @param store Interface which can later be fetched with the returned token.
|
/system/hardware/interfaces/net/netd/1.0/ |
D | INetd.hal | 20 * This is the root of the HAL module and is the interface returned when
|
/system/hardware/interfaces/wifi/keystore/1.0/ |
D | IKeystore.hal | 20 * This is the root of the HAL module and is the interface returned when
|
/system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/generated/ |
D | flatbuffers_types.fbs | 36 * Scan Results returned by offload nanoapp
|
/system/sepolicy/private/ |
D | virtualizationmanager.te | 117 # virtualizationmanager holds references to bound devices, returned from vfio_handler
|
/system/timezone/ |
D | RELEASE_NOTES.md | 23 zone IDs than before. After this release, the canonical zone IDs returned will
|
/system/core/fs_mgr/libsnapshot/android/snapshot/ |
D | snapshot.proto | 161 // operation via fastboot. This state can only be returned by WaitForMerge.
|
/system/memory/libmemunreachable/ |
D | README.md | 8 In the default (zero-overhead) mode, the returned data on leaks is limited to the address, approxim…
|
/system/tools/hidl/test/hidl_test/ |
D | hidl_test_client.cpp | 1527 EXPECT_OK(foo->repeatWithFmq(w, [&](const IFoo::WithFmq& returned) { in TEST_F() argument 1528 checkMQDescriptorEquality(w.scatterGathered.descSync, returned.scatterGathered.descSync); in TEST_F() 1529 checkMQDescriptorEquality(w.containsPointer.descSync, returned.containsPointer.descSync); in TEST_F() 1531 EXPECT_EQ(w.containsPointer.foo, returned.containsPointer.foo); in TEST_F()
|
/system/core/fastboot/ |
D | README.md | 122 The variable contents will be returned after the 363 The host sends an init packet once the query response is returned. The
|
/system/core/fastboot/fuzzy_fastboot/ |
D | README.md | 59 variables, with an associated ECMAScript regex you wish the returned variable to match on. 197 - **parser** - How the hash is returned is up to the vendor's implementation. It could be part of t…
|
/system/tools/aidl/tests/rust/ |
D | test_client.rs | 225 let returned = service.RepeatSimpleParcelable(&input, &mut out_param); in test_repeat_parcelable() localVariable 226 assert_eq!(returned, Ok(input.clone())); in test_repeat_parcelable()
|
/system/secretkeeper/ |
D | README.md | 19 interface returned by [getAuthGraphKe()][getauthgraphke] can be used to invoke methods on the sink.
|