Searched refs:to_child (Results 1 – 5 of 5) sorted by relevance
/third_party/cJSON/ |
D | cJSON_Utils.c | 1174 cJSON *to_child = to->child; in create_patches() local 1178 …dex = 0; (from_child != NULL) && (to_child != NULL); (void)(from_child = from_child->next), (void)… in create_patches() 1189 create_patches(patches, new_path, from_child, to_child, case_sensitive); in create_patches() 1207 for (; (to_child != NULL); (void)(to_child = to_child->next), index++) in create_patches() 1209 … compose_patch(patches, (const unsigned char*)"add", path, (const unsigned char*)"-", to_child); in create_patches() 1218 cJSON *to_child = NULL; in create_patches() local 1223 to_child = to->child; in create_patches() 1225 while ((from_child != NULL) || (to_child != NULL)) in create_patches() 1232 else if (to_child == NULL) in create_patches() 1238 …f = compare_strings((unsigned char*)from_child->string, (unsigned char*)to_child->string, case_sen… in create_patches() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_unlink/ |
D | 2-1.c | 56 int to_child[2]; in main() local 71 rval = pipe(to_child); in main() 84 close(to_child[PIPE_WRITE]); in main() 85 return child_process(mqname, to_child[PIPE_READ], in main() 90 close(to_child[PIPE_READ]); in main() 92 to_child[PIPE_WRITE], pid); in main()
|
D | 2-2.c | 51 int to_child[2]; in main() local 66 rval = pipe(to_child); in main() 79 close(to_child[PIPE_WRITE]); in main() 80 return child_process(mqname, to_child[PIPE_READ], in main() 85 close(to_child[PIPE_READ]); in main() 87 to_child[PIPE_WRITE], pid); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/ |
D | 2-1.c | 49 int to_child[2]; in main() local 60 rval = pipe(to_child); in main() 79 close(to_child[PIPE_WRITE]); in main() 81 return child_process(qname, to_child[PIPE_READ], in main() 86 close(to_child[PIPE_READ]); in main() 89 to_child[PIPE_WRITE], pid); in main()
|
/third_party/python/Lib/multiprocessing/ |
D | popen_spawn_win32.py | 70 with open(wfd, 'wb', closefd=True) as to_child: 92 reduction.dump(prep_data, to_child) 93 reduction.dump(process_obj, to_child)
|