HomeSort by relevance Sort by last modified time
    Searched defs:NULL (Results 26 - 50 of 1005) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
flockfile.c 87 } else if (_LOCKOWNER(fp) == NULL) {
122 while (_LOCKOWNER(fp) != NULL)
124 thr_setcancelstate(oldstate, NULL);
151 thr_setcancelstate(_LOCKCANCELSTATE(fp), NULL);
156 _LOCKOWNER(fp) = NULL;
  /external/clang/test/Analysis/
kmalloc-linux.c 6 #define NULL ((void *)0)
20 if (list == NULL)
35 if (list == NULL)
50 if (list == NULL)
malloc-three-arg.c 6 #define NULL ((void *)0)
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
20 if (list == NULL)
34 list = malloc(sizeof(*list) * 10, NULL, 0);
35 if (list == NULL)
49 list = malloc(sizeof(*list) * 10, NULL, flags);
50 if (list == NULL)
string-fail.c 32 #define NULL 0
unix-api.c 7 #ifndef NULL
8 #define NULL ((void*) 0)
24 fd = open(path, O_RDONLY, mode, NULL); // expected-warning{{Call to 'open' with more than three arguments}}
31 fd = open(path, O_RDONLY, NULL); // expected-warning{{Third argument to 'open' is not an integer}}
  /external/clang/test/Index/
complete-exprs.c 17 #define NULL __null
19 f3(str, NULL);
57 // CHECK-CC6: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
66 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
  /external/clang/test/Sema/
attr-sentinel.c 3 #define NULL (void*)0
17 foo1(1, NULL); // OK
19 foo5(1, NULL, 2); // OK
20 foo5(1,2,NULL, 1); // OK
21 foo5(1, NULL, 2, 1); // expected-warning {{missing sentinel in function call}}
24 foo6(1,NULL,3,4,5,6,7); // OK
26 foo7(1, NULL); // OK
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
NullName.java 23 NULL;
32 return appendable.append("null");
37 return "null";
  /external/e2fsprogs/intl/
explodename.c 29 /* On some strange systems still no definition of NULL is found. Sigh! */
30 #ifndef NULL
32 # define NULL ((void *) 0)
34 # define NULL 0
62 *modifier = NULL;
63 *territory = NULL;
64 *codeset = NULL;
65 *normalized_codeset = NULL;
66 *special = NULL;
67 *sponsor = NULL;
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
Null.java 22 public class Null implements IArgumentMatcher, Serializable {
26 public static final Null NULL = new Null();
28 private Null() {
32 return actual == null;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCache.java 21 // NULL object, which may be used for a cache key
22 public static final Object NULL = new Object();
  /external/icu/icu4c/source/samples/case/
case.cpp 33 out = u_finit(stdout, NULL, NULL);
39 NULL, NULL, NULL, &status);
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Null.java 12 public class Null implements ArgumentMatcher<Object>, Serializable {
14 public static final Null NULL = new Null();
16 private Null() {
20 return actual == null;
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
Configurator.java 32 value of this string constant is <b>inherited</b>. {@link #NULL}
39 <b>null</b>. */
40 public static final String NULL = "null";
  /external/webrtc/webrtc/base/
sigslot.cc 16 pthread_mutex_init(get_mutex(), NULL);
33 pthread_mutex_init(&m_mutex, NULL);
37 pthread_mutex_init(&m_mutex, NULL);
  /frameworks/base/core/java/android/util/
BackupUtils.java 29 public static final int NULL = 0;
43 return (in.readByte() == NOT_NULL) ? in.readUTF() : null;
47 if (val != null) {
51 out.writeByte(NULL);
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
begin_code.h 133 #ifndef NULL
135 #define NULL 0
137 #define NULL ((void *)0)
139 #endif /* NULL */
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
begin_code.h 133 #ifndef NULL
135 #define NULL 0
137 #define NULL ((void *)0)
139 #endif /* NULL */
  /prebuilts/misc/windows/sdl2/include/
begin_code.h 133 #ifndef NULL
135 #define NULL 0
137 #define NULL ((void *)0)
139 #endif /* NULL */
  /prebuilts/misc/windows/sdl2/test/
testfile.c 40 #ifndef NULL
41 #define NULL ((void *)0)
69 SDL_RWops *rwops = NULL;
79 rwops = SDL_RWFromFile(NULL, NULL);
82 rwops = SDL_RWFromFile(NULL, "ab+");
85 rwops = SDL_RWFromFile(NULL, "sldfkjsldkfj");
91 rwops = SDL_RWFromFile("something", NULL);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
begin_code.h 133 #ifndef NULL
135 #define NULL 0
137 #define NULL ((void *)0)
139 #endif /* NULL */
  /toolchain/binutils/binutils-2.27/intl/
explodename.c 29 /* On some strange systems still no definition of NULL is found. Sigh! */
30 #ifndef NULL
32 # define NULL ((void *) 0)
34 # define NULL 0
69 *modifier = NULL;
70 *territory = NULL;
71 *codeset = NULL;
72 *normalized_codeset = NULL;
73 *special = NULL;
74 *sponsor = NULL;
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonToken.java 72 * A JSON {@code null}.
74 NULL,
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/CPU/Include/
Types.h 49 #ifndef NULL
50 #define NULL ((VOID *) 0)
  /external/clang/test/FixIt/
fixit-vexing-parse.cpp 95 #define NULL 0
96 // CHECK: fix-it:"{{.*}}":{97:10-97:12}:" = NULL"

Completed in 560 milliseconds

12 3 4 5 6 7 8 91011>>