Searched refs:future (Results 1 – 21 of 21) sorted by relevance
/system/bt/osi/src/ |
D | future.c | 36 static void future_free(future_t *future); 62 void future_ready(future_t *future, void *value) { in future_ready() argument 63 assert(future != NULL); in future_ready() 64 assert(future->ready_can_be_called); in future_ready() 66 future->ready_can_be_called = false; in future_ready() 67 future->result = value; in future_ready() 68 semaphore_post(future->semaphore); in future_ready() 71 void *future_await(future_t *future) { in future_await() argument 72 assert(future != NULL); in future_await() 75 if (future->semaphore) in future_await() [all …]
|
/system/bt/osi/test/ |
D | future_test.cpp | 39 future_t *future = future_new(); in TEST_F() local 40 ASSERT_TRUE(future != NULL); in TEST_F() 43 thread_post(worker_thread, post_to_future, future); in TEST_F() 45 EXPECT_EQ(pass_back_data0, future_await(future)); in TEST_F() 51 future_t *future = future_new_immediate((void *)pass_back_data1); in TEST_F() local 52 ASSERT_TRUE(future != NULL); in TEST_F() 53 EXPECT_EQ(pass_back_data1, future_await(future)); in TEST_F()
|
/system/bt/btcore/src/ |
D | module.c | 160 future_t *future = function(); in call_lifecycle_function() local 163 if (!future) in call_lifecycle_function() 167 return future_await(future); in call_lifecycle_function()
|
/system/bt/osi/include/ |
D | future.h | 37 void future_ready(future_t *future, void *value);
|
/system/core/logcat/ |
D | event.logtags | 84 # [31-16] Reserved for future use 89 # [31-13] Reserved for future use
|
/system/bt/osi/ |
D | BUILD.gn | 29 "src/future.c",
|
D | Android.mk | 37 ./src/future.c \
|
/system/bt/hci/src/ |
D | hci_layer.c | 377 future_t *future = future_new(); in transmit_command_futured() local 381 wait_entry->complete_future = future; in transmit_command_futured() 389 return future; in transmit_command_futured()
|
/system/core/fastboot/ |
D | fastboot_protocol.txt | 112 lowercase letter, to prevent incompatibilities with future specs. 205 fastboot packet. The 8-byte length is intended to provide future-proofing even 255 Remaining bits are reserved for future use and must be set to 0. 311 may be implemented in future versions if necessary to increase performance.
|
/system/bt/ |
D | README.md | 77 …n some internal Android projects, which also need to be downloaded. This will be removed in future:
|
/system/core/adb/ |
D | protocol.txt | 241 --- future expansion --------------------------------------------------- 255 succeeds. A future version may want to do some level of windowing where
|
/system/connectivity/shill/ |
D | TESTING | 47 Make breakpoint pending on future shared library load? (y or [n]) n
|
/system/update_engine/ |
D | omaha_request_action_unittest.cc | 1536 int64_t future = in TEST_F() local 1541 .WillOnce(DoAll(SetArgumentPointee<1>(future), Return(true))); in TEST_F() 1543 .WillOnce(DoAll(SetArgumentPointee<1>(future), Return(true))); in TEST_F()
|
D | update_metadata.proto | 252 // rather than a bool to allow for more flexibility in future file formats.
|
/system/sepolicy/ |
D | app.te | 294 # Note: Try expanding list of app domains in the future.
|
/system/media/audio_utils/ |
D | Doxyfile.orig | 1056 # it is more robust and this tag (HTML_STYLESHEET) will in the future become 1066 # standard style sheet and is therefor more robust against future updates. 1195 # Windows help format (.hlp) on all Windows platforms in the future. Compressed
|
D | Doxyfile | 1056 # it is more robust and this tag (HTML_STYLESHEET) will in the future become 1066 # standard style sheet and is therefor more robust against future updates. 1195 # Windows help format (.hlp) on all Windows platforms in the future. Compressed
|
/system/tpm/trunks/generator/ |
D | raw_commands.txt | 3176 future use. This allows tests to be done so that a future commands will not be delayed due to 12652 // there was. So, this must indicate that a future Shutdown(STATE) has 18863 this value with a larger value (longer into the future), the TPM will discard the update value. Thi…
|
D | raw_commands_fixed.txt | 3176 future use. This allows tests to be done so that a future commands will not be delayed due to 12663 // there was. So, this must indicate that a future Shutdown(STATE) has 18874 this value with a larger value (longer into the future), the TPM will discard the update value. Thi…
|
D | raw_structures.txt | 2703 In TPM 1.2, these were defined as 32-bit constants. This specification limits the future size of the 7643 the future. It is intended that HR_MASK and HR_SHIFT are the only values that need change to resize
|
D | raw_structures_fixed.txt | 2705 In TPM 1.2, these were defined as 32-bit constants. This specification limits the future size of the 7670 the future. It is intended that HR_MASK and HR_SHIFT are the only values that need change to resize
|