Searched refs:NULL (Results 276 - 300 of 17597) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/libxml2-26/libxml2/
H A Dpattern.c19 * currently push(NULL, NULL) means a reset of the streaming context
87 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
93 const xmlChar *name; /* first string value if NULL accept all */
200 * Returns the newly allocated xmlPatternPtr or NULL in case of error
207 if (cur == NULL) {
208 ERROR(NULL, NULL, NULL,
210 return(NULL);
[all...]
H A Dc14n.c120 (((ctx)->is_visible_callback != NULL) ? \
142 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
143 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0, extra,
144 NULL, NULL, 0, 0,
157 __xmlRaiseError(NULL, NUL
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dpattern.c19 * currently push(NULL, NULL) means a reset of the streaming context
84 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
90 const xmlChar *name; /* first string value if NULL accept all */
197 * Returns the newly allocated xmlPatternPtr or NULL in case of error
204 if (cur == NULL) {
205 ERROR(NULL, NULL, NULL,
207 return(NULL);
[all...]
H A Dc14n.c118 (((ctx)->is_visible_callback != NULL) ? \
140 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
141 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0, extra,
142 NULL, NULL, 0, 0,
155 __xmlRaiseError(NULL, NUL
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrsep.c45 * be further tokens), or is NULL (if there are definitely no more tokens).
47 * If *stringp is NULL, strsep returns NULL.
63 if ((s = *stringp) == NULL)
64 return (NULL);
71 s = NULL;
/macosx-10.9.5/BerkeleyDB-21/db/db/
H A Ddb_vrfy_stub.c47 COMPQUIET(file, NULL);
48 COMPQUIET(database, NULL);
49 COMPQUIET(outfile, NULL);
55 (void)__db_close(dbp, NULL, 0);
68 COMPQUIET(dbp, NULL);
69 COMPQUIET(name, NULL);
70 COMPQUIET(subdb, NULL);
71 COMPQUIET(handle, NULL);
72 COMPQUIET(callback, NULL);
84 COMPQUIET(pipp, NULL);
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/os_brew/
H A Dos_pid.c25 COMPQUIET(dbenv, NULL);
27 if (pidp != NULL) {
31 if (tidp != NULL)
/macosx-10.9.5/CPANInternal-140/Class-DBI/t/testlib/
H A DMyStarLink.pm15 linkid TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
16 film TINYINT NOT NULL,
17 star TINYINT NOT NULL
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/t/testlib/
H A DMyStarLink.pm15 linkid TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
16 film TINYINT NOT NULL,
17 star TINYINT NOT NULL
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/testlib/
H A DMyStarLink.pm15 linkid TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
16 film TINYINT NOT NULL,
17 star TINYINT NOT NULL
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dfgetln.c50 static char *buf = NULL;
55 if (buf == NULL) {
57 if ((buf = malloc(bufsiz)) == NULL)
58 return NULL;
61 if (fgets(buf, bufsiz, fp) == NULL)
62 return NULL;
65 while ((ptr = strchr(&buf[*len], '\n')) == NULL) {
69 if (nbuf == NULL) {
73 buf = NULL;
74 return NULL;
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dhostent_find_fqdn.c48 if (strchr (ret, '.') == NULL)
49 for (h = (const char **)he->h_aliases; *h != NULL; ++h) {
50 if (strchr (*h, '.') != NULL) {
H A Dstrsep.c46 if(*str == NULL)
47 return NULL;
50 *str = NULL;
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dicudataver.c16 UResourceBundle *icudatares = NULL;
22 if (dataVersionFillin != NULL) {
23 icudatares = ures_openDirect(NULL, U_ICU_VERSION_BUNDLE , status);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/librewrite/
H A Drule.c36 assert( context != NULL );
37 assert( context->lc_rule != NULL );
38 assert( rule != NULL );
40 for ( r = context->lc_rule; r->lr_next != NULL; r = r->lr_next );
59 assert( pbase != NULL );
60 assert( action != NULL );
62 for ( pa = pbase; *pa != NULL; pa = &(*pa)->la_next );
75 assert( paction != NULL );
76 assert( *paction != NULL );
97 *paction = NULL;
[all...]
/macosx-10.9.5/OpenPAM-20/openpam/lib/
H A Dopenpam_load.c75 (module == NULL) ? "no" : "using", path);
79 if (module == NULL && strchr(path, '/') == NULL) {
82 (module == NULL) ? "no" : "using", path);
85 if (module == NULL) {
87 return (NULL);
101 if (module == NULL)
103 if (module->dlh == NULL)
121 if (chain == NULL)
124 chain->next = NULL;
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dutilities.cpp35 static CFMutableDictionaryRef gCacheDictionaryRef = NULL;
43 gCacheDictionaryRef = CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
48 __block char* valueToReturn = NULL;
56 CFStringRef input = CFStringCreateWithCString(NULL, file_name, kCFStringEncodingUTF8);
57 if (entryCount < OPEN_MAX && input != NULL) // is it acceptable to use the cache?
62 if (output == NULL)
66 if (valueToReturn != NULL) // no error, so continue
69 output = CFStringCreateWithCString(NULL, valueToReturn, kCFStringEncodingUTF8);
76 char* valueToFree = NULL;
81 CFIndex size = CFStringGetMaximumSizeForEncoding(CFStringGetLength(output), kCFStringEncodingUTF8) + 1; // account for NULL terminatio
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dutilities.cpp35 static CFMutableDictionaryRef gCacheDictionaryRef = NULL;
43 gCacheDictionaryRef = CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
48 __block char* valueToReturn = NULL;
56 CFStringRef input = CFStringCreateWithCString(NULL, file_name, kCFStringEncodingUTF8);
57 if (entryCount < OPEN_MAX && input != NULL) // is it acceptable to use the cache?
62 if (output == NULL)
66 if (valueToReturn != NULL) // no error, so continue
69 output = CFStringCreateWithCString(NULL, valueToReturn, kCFStringEncodingUTF8);
76 char* valueToFree = NULL;
81 CFIndex size = CFStringGetMaximumSizeForEncoding(CFStringGetLength(output), kCFStringEncodingUTF8) + 1; // account for NULL terminatio
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/Regressions/secitem/
H A Dsi-24-sectrust-diginotar.c17 runCertificateTestForDirectory(sslPolicy, CFSTR("DigiNotar"), NULL);
18 runCertificateTestForDirectory(sslPolicy, CFSTR("DigiNotar-Entrust"), NULL);
19 runCertificateTestForDirectory(sslPolicy, CFSTR("DigiNotar-ok"), NULL);
/macosx-10.9.5/apache-786.1/httpd/modules/dav/fs/
H A Dmod_dav_fs.c73 arg1, NULL);
76 return NULL;
82 AP_INIT_TAKE1("DAVLockDB", dav_fs_cmd_davlockdb, NULL, RSRC_CONF,
85 { NULL }
90 dav_hook_gather_propsets(dav_fs_gather_propsets, NULL, NULL,
92 dav_hook_find_liveprop(dav_fs_find_liveprop, NULL, NULL, APR_HOOK_MIDDLE);
93 dav_hook_insert_all_liveprops(dav_fs_insert_all_liveprops, NULL, NULL,
[all...]
/macosx-10.9.5/apache-786.1/httpd/test/
H A Dtest_select.c42 srv = select(0, NULL, NULL, NULL, &tv);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/nls/
H A Dmsgcat.c64 REQUIRE(name != NULL);
65 REQUIRE(msgcatp != NULL && *msgcatp == NULL);
68 if (msgcat == NULL) {
69 *msgcatp = NULL;
94 REQUIRE(msgcatp != NULL);
96 REQUIRE(VALID_MSGCAT(msgcat) || msgcat == NULL);
98 if (msgcat != NULL) {
107 *msgcatp = NULL;
119 REQUIRE(VALID_MSGCAT(msgcat) || msgcat == NULL);
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isccfg/
H A Dlog.c34 { NULL, 0 }
43 { NULL, 0 }
48 REQUIRE(lctx != NULL);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dstrdup.c36 return (char *)NULL;
41 return (char *)NULL;
45 return (char *)NULL;
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlerror-clear/
H A Dmain.c23 #include <stdio.h> // fprintf(), NULL
40 if ( handle1 != NULL ) {
47 if ( msg == NULL ) {
48 FAIL("dlerror-clear: dlerror() returned NULL but should have returned an error message");
54 if ( msg2 != NULL ) {
55 FAIL("dlerror-clear: dlerror() returned message but should have returned NULL");

Completed in 311 milliseconds

<<11121314151617181920>>