HomeSort by relevance Sort by last modified time
    Searched refs:NULL (Results 201 - 225 of 30428) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/ltp/testcases/kernel/fs/doio/
string_to_tokens.c 57 * The array is terminated with a null pointer.
66 * If 'arg_array' or 'separator' is NULL or 'array_size' is less than 2, -1 is returned.
70 * physically alters 'arg_string' by placing null characters where the
86 if (arg_array == NULL || array_size <= 1 || separator == NULL)
93 if ((arg_array[num_toks] = strtok(arg_string, separator)) == NULL) {
98 if ((arg_array[num_toks] = strtok(NULL, separator)) == NULL)
103 arg_array[num_toks] = NULL;
  /external/valgrind/helgrind/tests/
hg06_readshared.c 24 pthread_create(&a, NULL, t1, NULL);
25 pthread_create(&b, NULL, t2, NULL);
27 pthread_join(a, NULL);
28 pthread_join(b, NULL);
  /external/webrtc/webrtc/libjingle/xmpp/
moduleimpl.cc 17 engine_(NULL),
23 if (engine_ != NULL) {
25 engine_ = NULL;
32 if (NULL == engine || NULL != engine_)
43 ASSERT(NULL != engine_);
  /bionic/libc/bionic/
clearenv.cpp 34 if (e != NULL) {
36 *e = NULL;
sched_getcpu.cpp 36 int rc = __getcpu(&cpu, NULL, NULL);
  /external/ImageMagick/api_examples/
cli_operators.c 35 cli_wand = AcquireMagickCLI((ImageInfo *) NULL,(ExceptionInfo *) NULL);
39 CLISpecialOperator (cli_wand, "(", NULL);
41 CLISimpleOperatorImages (cli_wand, "-rotate", "-90", NULL);
42 CLISpecialOperator (cli_wand, ")", NULL);
43 CLIListOperatorImages (cli_wand, "+append", NULL, NULL);
44 CLIListOperatorImages (cli_wand, "-write", "show:", NULL);
  /external/compiler-rt/test/tsan/
aligned_vs_unaligned_race.cc 12 return NULL;
21 return NULL;
27 pthread_create(&t[0], NULL, Thread1, NULL);
28 pthread_create(&t[1], NULL, Thread2, NULL);
29 pthread_join(t[0], NULL);
30 pthread_join(t[1], NULL);
fd_close_norace.cc 11 return NULL;
18 return NULL;
24 pthread_create(&t[0], NULL, Thread1, NULL);
25 pthread_create(&t[1], NULL, Thread2, NULL);
26 pthread_join(t[0], NULL);
27 pthread_join(t[1], NULL);
fd_pipe_norace.cc 12 return NULL;
20 return NULL;
26 pthread_create(&t[0], NULL, Thread1, NULL);
27 pthread_create(&t[1], NULL, Thread2, NULL);
28 pthread_join(t[0], NULL);
29 pthread_join(t[1], NULL);
fd_stdout_race.cc 16 return NULL;
23 return NULL;
29 pthread_create(&t[0], NULL, Thread1, NULL);
30 pthread_create(&t[1], NULL, Thread2, NULL);
31 pthread_join(t[0], NULL);
32 pthread_join(t[1], NULL);
memcmp_race.cc 14 return NULL;
21 return NULL;
28 pthread_create(&t[0], NULL, Thread1, NULL);
29 pthread_create(&t[1], NULL, Thread2, NULL);
30 pthread_join(t[0], NULL);
31 pthread_join(t[1], NULL);
memcpy_race.cc 13 return NULL;
20 return NULL;
27 pthread_create(&t[0], NULL, Thread1, NULL);
28 pthread_create(&t[1], NULL, Thread2, NULL);
29 pthread_join(t[0], NULL);
30 pthread_join(t[1], NULL);
mutexset1.cc 12 return NULL;
18 return NULL;
32 pthread_create(&t[0], NULL, Thread1, NULL);
33 pthread_create(&t[1], NULL, Thread2, NULL);
34 pthread_join(t[0], NULL);
35 pthread_join(t[1], NULL);
mutexset2.cc 12 return NULL;
18 return NULL;
32 pthread_create(&t[0], NULL, Thread1, NULL);
33 pthread_create(&t[1], NULL, Thread2, NULL);
34 pthread_join(t[0], NULL);
35 pthread_join(t[1], NULL);
mutexset3.cc 15 return NULL;
21 return NULL;
39 pthread_create(&t[0], NULL, Thread1, NULL);
40 pthread_create(&t[1], NULL, Thread2, NULL);
41 pthread_join(t[0], NULL);
42 pthread_join(t[1], NULL);
mutexset4.cc 15 return NULL;
21 return NULL;
39 pthread_create(&t[0], NULL, Thread1, NULL);
40 pthread_create(&t[1], NULL, Thread2, NULL);
41 pthread_join(t[0], NULL);
42 pthread_join(t[1], NULL);
mutexset5.cc 13 return NULL;
21 return NULL;
40 pthread_create(&t[0], NULL, Thread1, NULL);
41 pthread_create(&t[1], NULL, Thread2, NULL);
42 pthread_join(t[0], NULL);
43 pthread_join(t[1], NULL);
mutexset7.cc 10 return NULL;
22 return NULL;
28 pthread_create(&t[0], NULL, Thread1, NULL);
29 pthread_create(&t[1], NULL, Thread2, NULL);
30 pthread_join(t[0], NULL);
31 pthread_join(t[1], NULL);
mutexset8.cc 12 return NULL;
18 return NULL;
33 pthread_create(&t[0], NULL, Thread1, NULL);
34 pthread_create(&t[1], NULL, Thread2, NULL);
35 pthread_join(t[0], NULL);
36 pthread_join(t[1], NULL);
race_on_mutex.c 16 return NULL;
28 return NULL;
34 pthread_create(&t[0], NULL, Thread1, NULL);
35 pthread_create(&t[1], NULL, Thread2, NULL);
36 pthread_join(t[0], NULL);
37 pthread_join(t[1], NULL);
race_on_write.cc 13 return NULL;
18 return NULL;
23 fd = open("/dev/null", O_WRONLY);
26 pthread_create(&t[0], NULL, Thread1, NULL);
28 pthread_create(&t[1], NULL, Thread2, NULL);
29 pthread_join(t[0], NULL);
30 pthread_join(t[1], NULL);
tsan-vs-gvn.cc 19 return NULL;
24 return NULL;
30 pthread_create(&t[0], NULL, Thread1, NULL);
31 pthread_create(&t[1], NULL, Thread2, NULL);
32 pthread_join(t[0], NULL);
33 pthread_join(t[1], NULL);
  /external/elfutils/libdw/
dwarf_cu_getdwarf.c 41 if (cu == NULL)
43 return NULL;
dwarf_getalt.c 38 if (main == NULL)
39 return NULL;
dwarf_getelf.c 42 if (dwarf == NULL)
44 return NULL;

Completed in 344 milliseconds

1 2 3 4 5 6 7 891011>>