Searched refs:return_value (Results 1 – 8 of 8) sorted by relevance
/bionic/tools/bionicbb/ |
D | test_tasks.py | 12 mock_commit.return_value = { 17 other_check.return_value = False 30 mock_commit.return_value = { 35 other_check.return_value = False 48 mock_commit.return_value = { 53 other_check.return_value = False 66 mock_files.return_value = ['foo/CleanSpec.mk'] 68 other_check.return_value = False 81 mock_files.return_value = ['tools/bionicbb/common.sh'] 83 other_check.return_value = False
|
/bionic/libc/bionic/ |
D | pthread_join.cpp | 34 int pthread_join(pthread_t t, void** return_value) { in pthread_join() argument 64 if (return_value) { in pthread_join() 65 *return_value = thread->return_value; in pthread_join()
|
D | pthread_exit.cpp | 63 void pthread_exit(void* return_value) { in pthread_exit() argument 68 thread->return_value = return_value; in pthread_exit()
|
D | pthread_internal.h | 93 void* return_value; variable
|
/bionic/tests/libs/ |
D | bionic_tests_zipalign.cpp | 44 int32_t return_value = StartIteration(handle, &cookie, nullptr, nullptr); in GetEntries() local 45 if (return_value != 0) { in GetEntries() 46 fprintf(stderr, "Unable to iterate over entries: %s\n", ErrorCodeString(return_value)); in GetEntries() 52 while ((return_value = Next(cookie, &entry, &name)) == 0) { in GetEntries() 56 if (return_value != -1) { in GetEntries() 57 fprintf(stderr, "Error while iterating over zip entries: %s\n", ErrorCodeString(return_value)); in GetEntries() 65 return return_value == -1; in GetEntries() 141 int32_t return_value = OpenArchive(argv[2], &handle); in main() local 142 if (return_value != 0) { in main() 144 fprintf(stderr, "Unable to open '%s': %s\n", argv[2], ErrorCodeString(return_value)); in main()
|
/bionic/libc/arch-x86/atom/string/ |
D | sse2-strrchr-atom.S | 234 L(return_value): 282 jz L(return_value) 300 jz L(return_value) 321 jz L(return_value) 339 jz L(return_value) 351 jz L(return_value) 363 jz L(return_value) 375 jz L(return_value) 387 jz L(return_value) 399 jz L(return_value) [all …]
|
D | sse2-wcsrchr-atom.S | 229 L(return_value): 272 jz L(return_value) 284 jz L(return_value) 300 jz L(return_value)
|
/bionic/tests/ |
D | sys_socket_test.cpp | 35 void* return_value = NULL; in ConnectFn() local 51 return_value = reinterpret_cast<void*>(-1); in ConnectFn() 54 return_value = reinterpret_cast<void*>(-1); in ConnectFn() 59 return return_value; in ConnectFn()
|