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

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/asn1/
asn1.go 34 NULL = Tag(5)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/asn1/
asn1.go 34 NULL = Tag(5)
  /prebuilts/sdk/renderscript/clang-include/
stddef.h 97 #undef NULL
100 # define NULL __null
102 # define NULL 0
105 # define NULL ((void*)0)
  /system/connectivity/wificond/
looper_backed_event_loop.cpp 82 looper_->sendMessage(event_loop_callback, NULL);
89 looper_->sendMessageDelayed(ms2ns(delay_ms), looper_callback, NULL);
107 // Since we are using non-NULL callback, the second parameter 'ident' will
110 if (looper_->addFd(fd, 0, event, watch_fd_callback, NULL) == 0) {
  /toolchain/binutils/binutils-2.27/libiberty/
strsignal.c 43 #ifndef NULL
44 # define NULL (void *) 0
222 ENTRY(0, NULL, NULL)
297 for (eip = signal_table; eip -> name != NULL; eip++)
309 if (signal_names == NULL)
312 if ((signal_names = (const char **) malloc (nbytes)) != NULL)
315 for (eip = signal_table; eip -> name != NULL; eip++)
327 if (sys_siglist == NULL)
330 if ((sys_siglist = (const char **) malloc (nbytes)) != NULL)
    [all...]
  /cts/tests/tests/media/libndkaudio/
AudioRecorder.cpp 29 #ifndef NULL
30 #define NULL 0
58 static float* recBuffer = NULL;
72 : sink_(NULL),
77 engineObj_(NULL),
78 engineItf_(NULL),
79 recorderObj_(NULL),
80 recorderItf_(NULL),
81 recBuffQueueItf_(NULL),
82 configItf_(NULL)
    [all...]
  /device/google/contexthub/firmware/os/drivers/hall/
hall.c 77 osEnqueueEvt(sensorGetMyEventType(SENS_TYPE_HALL), sample.vptr, NULL);
170 osEnqueueEvt(sensorGetMyEventType(SENS_TYPE_HALL), sample.vptr, NULL);
178 return osEnqueueEvt(sensorGetMyEventType(SENS_TYPE_HALL), SENSOR_DATA_EVENT_FLUSH, NULL);
188 result = osEnqueuePrivateEvt(sensorGetMyEventType(SENS_TYPE_HALL), sample.vptr, NULL, tid);
210 mTask.sensorHandle = sensorRegister(&mSensorInfo, &mSensorOps, NULL, true);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
UniClassObject.py 46 NULL = u'\u0000'
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/VlanConfigDxe/
VlanConfigImpl.c 19 EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting = NULL;
47 @param[in] Request A null-terminated Unicode string in
50 string. Points to the string's null terminator if
56 @param[out] Results A null-terminated Unicode string in
86 if (Progress == NULL || Results == NULL) {
91 if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &gVlanConfigFormSetGuid, mVlanStorageName)) {
95 ConfigRequestHdr = NULL;
96 ConfigRequest = NULL;
103 if (mHiiConfigRouting == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 83 GetVariable2 (L"Setup", &gEfiWinNtSystemConfigGuid, (VOID **) &Configuration, NULL);
84 if (Configuration != NULL) {
107 for (Index = 0; gPlatformConsole[Index].DevicePath != NULL; Index++) {
109 EfiBootManagerUpdateConsoleVariable (ConIn, gPlatformConsole[Index].DevicePath, NULL);
113 EfiBootManagerUpdateConsoleVariable (ConOut, gPlatformConsole[Index].DevicePath, NULL);
117 EfiBootManagerUpdateConsoleVariable (ErrOut, gPlatformConsole[Index].DevicePath, NULL);
228 NULL,
264 if (NameGuid != NULL) {
348 EfiBootManagerRegisterContinueKeyOption (0, &Enter, NULL);
355 EfiBootManagerAddKeyOptionVariable (NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL);
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 82 HandleBuffer = NULL;
86 NULL,
97 for (IndexFv = 0, FvHandle = NULL; IndexFv < HandleCount && FvHandle == NULL; IndexFv++) {
110 UiSection = NULL;
139 if (FvHandle == NULL) {
162 NULL,
217 for (Index = 0; gPlatformConsole[Index].DevicePath != NULL; Index++) {
219 EfiBootManagerUpdateConsoleVariable (ConIn, gPlatformConsole[Index].DevicePath, NULL);
223 EfiBootManagerUpdateConsoleVariable (ConOut, gPlatformConsole[Index].DevicePath, NULL);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMStringPool.java 63 public static final int NULL=-1;
89 m_hashStart[i]=NULL;
100 if(i==NULL) return null;
107 if(s==null) return NULL;
115 while(hashcandidate!=NULL)
128 m_hashChain.addElement(NULL); // Initialize to no-following-same-hash
129 if(hashlast==NULL) // First for this hash
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_test.cc 109 bssl::UniquePtr<EC_KEY> ret(EC_KEY_parse_private_key(&cbs, NULL));
150 EC_KEY_get0_group(key.get()), pub_key, x.get(), y.get(), NULL));
292 EXPECT_EQ(0, EC_GROUP_cmp(group.get(), group.get(), NULL));
293 EXPECT_EQ(0, EC_GROUP_cmp(group2.get(), group.get(), NULL));
306 EXPECT_NE(0, EC_GROUP_cmp(group.get(), group3.get(), NULL));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTags.java 9 public static final int NULL = 0x05;
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
list_ports_windows.py 22 NULL = 0
145 NULL,
  /external/clang/test/ARCMT/
Common.h 13 #define NULL ((void*)0)
98 return X ? CFRetain((CFTypeRef)X) : NULL;
  /external/clang/test/Analysis/
MPIMock.h 4 #define NULL 0
  /external/clang/test/Headers/
stddefneeds.cpp 5 void* v0 = NULL; // expected-error{{undeclared}}
14 void* v1 = NULL; // expected-error{{undeclared}}
23 void* v2 = NULL; // expected-error{{undeclared}}
32 void* v3 = NULL;
41 void* v4 = NULL;
50 void* v5 = NULL;
56 #undef NULL
57 #define NULL 0
60 // to redefine NULL to the correct value again.
64 // gtk headers then use __attribute__((sentinel)), which doesn't work if NULL
    [all...]
  /external/clang/test/Sema/
conditional-expr.c 101 #define NULL (void*)0
105 (void)(1 ? A1 : NULL); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
106 (void)(1 ? NULL : A1); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
110 (void)(1 ? A1 : (NULL)); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
  /external/e2fsprogs/e2fsck/
mtrace.h 46 #ifndef NULL
47 #define NULL 0
  /external/e2fsprogs/intl/
l10nflist.c 41 /* On some strange systems still no definition of NULL is found. Sigh! */
42 #ifndef NULL
44 # define NULL ((void *) 0)
46 # define NULL 0
142 return entry >= argz + argz_len ? NULL : (char *) entry;
213 if (abs_filename == NULL)
214 return NULL;
273 for (retval = *l10nfile_list; retval != NULL; retval = retval->next)
274 if (retval->filename != NULL)
283 retval = NULL;
    [all...]
  /external/fio/
ghelpers.c 64 label_widget = gtk_label_new(NULL);
126 g_object_set(G_OBJECT(renderer), "alignment", align, NULL);
196 scroll = gtk_scrolled_window_new(NULL, NULL);
  /external/libxcam/modules/ocl/
cl_csc_handler.cpp 242 ERROR, csc_kernel->build_kernel (kernel_csc_info[type], NULL) == XCAM_RETURN_NO_ERROR, NULL,
  /external/neven/Embedded/common/src/b_BasicEm/
Basic.h 104 #ifndef NULL
105 #define NULL 0L
132 #define bbs_ERROR0( formatA ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
133 #define bbs_ERROR1( formatA, arg1A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
134 #define bbs_ERROR2( formatA, arg1A, arg2A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
135 #define bbs_ERROR3( formatA, arg1A, arg2A, arg3A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
136 #define bbs_ERROR4( formatA, arg1A, arg2A, arg3A, arg4A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
137 #define bbs_ERROR5( formatA, arg1A, arg2A, arg3A, arg4A, arg5A ) bbs_Context_pushError( cpA, bbs_Error_create( bbs_ERR_ERROR, __LINE__, __FILE__, NULL ) )
139 #define bbs_ERR0( errorA, formatA ) bbs_Context_pushError( cpA, bbs_Error_create( errorA, __LINE__, __FILE__, NULL ) )
140 #define bbs_ERR1( errorA, formatA, arg1A ) bbs_Context_pushError( cpA, bbs_Error_create( errorA, __LINE__, __FILE__, NULL ) )
    [all...]
  /external/python/cpython3/Misc/
coverity_model.c 8 * available but not wchar_t, NULL etc.
12 * variable could be either NULL or have some data.
21 #define NULL (void *)0
43 /* Never returns NULL */
45 assert(p != NULL);
56 assert(p != NULL);
62 return NULL;
83 return NULL;

Completed in 1174 milliseconds

1 2 3 4 5 67 8 91011>>