Searched refs:NULL (Results 176 - 200 of 10793) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libumem/common/
H A Dvmem_base.c44 return (NULL);
47 if (vmem_heap == NULL)
51 if (allocp != NULL)
53 if (freep != NULL)
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dbeep.c59 if (bell != NULL)
61 else if (flash_screen != NULL)
76 if (flash_screen != NULL)
78 else if (bell != NULL)
/illumos-gate/usr/src/lib/libnvpair/
H A Dnvpair_alloc_system.c47 NULL, /* nv_ao_init() */
48 NULL, /* nv_ao_fini() */
51 NULL /* nv_ao_reset() */
56 NULL
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Datof.c37 return strtod(cp, (char **) NULL);
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dcuserid.c43 if (s == NULL)
46 if (p != NULL)
50 if (pw != NULL)
53 return (NULL);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Datof.c42 return (strtod(cp, (char **)NULL));
H A Dgetusershell.c77 NULL
92 if (curshell == NULL)
95 if (ret != NULL)
104 if (shells != NULL)
106 shells = NULL;
107 if (strings != NULL)
109 strings = NULL;
110 curshell = NULL;
127 if (shells != NULL)
129 shells = NULL;
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dfreevalues.c40 if ( vals == NULL )
42 for ( i = 0; vals[i] != NULL; i++ )
53 if ( vals == NULL )
55 for ( i = 0; vals[i] != NULL; i++ ) {
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A Dclass_id.c42 * const char *: an initial value for oprom_array, if non-NULL
51 if (opp != NULL) {
54 if (prop != NULL)
92 if (opp == NULL)
93 return (NULL);
97 return (NULL);
104 if (opp == NULL)
105 return (NULL);
110 return (NULL);
163 char *name, *class_id = NULL;
[all...]
/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Derrstrtok.c43 * sequentially subsequent calls. returns NULL when no
45 * `subsequent' calls are calls with first argument NULL.
57 p = (string == NULL)? savept: string;
60 return (NULL);
65 return (NULL);
67 if ((r = strpbrk(q, sepset)) == NULL) /* move past token */
/illumos-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_handle.c74 return (NULL);
75 tpconf = NULL;
79 return ((CLIENT *)NULL);
81 if ((hostname = strdup(u.nodename)) == (char *)NULL) {
83 return ((CLIENT *)NULL);
101 if ((kwarn_clnt == NULL) && (tpconf)) {
125 if (clnt_control(kwarn_clnt, CLSET_SVC_PRIV, NULL) != TRUE) {
127 kwarn_clnt = NULL;
128 return (NULL);
131 if (kwarn_clnt == NULL)
[all...]
/illumos-gate/usr/src/stand/lib/sa/
H A Dstdlib.c34 * variables, just return NULL.
40 return (NULL);
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrdup.c46 char *copy = NULL;
48 if (str != NULL) {
50 if ((copy = malloc(len)) == NULL)
51 return (NULL);
/illumos-gate/usr/src/cmd/mandoc/
H A Droff.c459 { "ab", roff_unsupp, NULL, NULL, 0, NULL },
460 { "ad", roff_line_ignore, NULL, NULL, 0, NULL },
461 { "af", roff_line_ignore, NULL, NULL, 0, NULL },
462 { "aln", roff_unsupp, NULL, NUL
[all...]
/illumos-gate/usr/src/common/net/wanboot/
H A Dp12auxpars.c157 * other (CA) certs. Note either ca should be NULL, *ca should be NULL,
163 * pass - Pass phrase for the private key (possibly empty) or NULL if
171 * to match. This value should be a NULL terminated string.
215 /* If NULL PKCS12 structure, this is an error */
216 if (p12 == NULL) {
223 *pkey = NULL;
225 *cert = NULL;
231 ca_supplied = (ca != NULL && *ca != NULL);
[all...]
/illumos-gate/usr/src/lib/libscf/common/
H A Dscf_tmpl.c174 * On failure, returns NULL and sets scf_error() to _CONNECTION_BROKEN,
184 assert(t->pt_svc != NULL || t->pt_inst != NULL);
185 assert(t->pt_svc == NULL || t->pt_inst == NULL);
187 if (buf == NULL) {
192 if (t->pt_inst != NULL)
200 buf = NULL;
216 * On failure, returns NULL and sets scf_error() to: _CONNECTION_BROKEN,
225 if (buf == NULL) {
[all...]
/illumos-gate/usr/src/lib/print/libpapi-common/common/
H A Duri.c49 if ((string == NULL) || (uri == NULL)) {
55 if ((ptr = strchr(string, ':')) == NULL) {
60 if ((*uri = u = calloc(1, sizeof (*u))) == NULL)
70 char *end = NULL, *user = NULL, *host = NULL, *path = NULL;
74 if ((path = end = strchr(string, '/')) == NULL)
92 if (user != NULL) {
[all...]
/illumos-gate/usr/src/lib/krb5/kadm5/clnt/
H A Dclient_rpc.c42 if (clnt == NULL)
43 return (NULL);
49 return (NULL);
60 if (clnt == NULL)
61 return (NULL);
67 return (NULL);
78 if (clnt == NULL)
79 return (NULL);
85 return (NULL);
96 if (clnt == NULL)
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dipath.c76 ASSERT(ipp1 != NULL);
77 ASSERT(ipp2 != NULL);
79 for (i = 0; ipp1[i].s != NULL && ipp2[i].s != NULL; i++)
85 if (ipp1[i].s == NULL && ipp2[i].s == NULL)
87 else if (ipp1[i].s == NULL)
107 ASSERT(np != NULL);
108 ASSERT(ipp != NULL);
110 for (i = 0; ipp[i].s != NULL
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/layout/
H A Dlayout_concat.c133 dlist_t *usable_hbas = NULL;
134 dlist_t *similar_hba_groups = NULL;
135 dlist_t *iter = NULL;
136 devconfig_t *concat = NULL;
159 (error == 0) && (concat == NULL) && (iter != NULL);
168 (concat == NULL) && (error == 0);
171 dlist_t *selhbas = NULL;
172 dlist_t *disks = NULL;
208 NULL,
[all...]
/illumos-gate/usr/src/lib/print/libipp-listener/common/
H A Dcreate-job.c43 papi_job_t j = NULL;
44 papi_attribute_t **operational = NULL;
45 papi_attribute_t **job_attributes = NULL;
46 char *queue = NULL;
48 "printer-uri", NULL };
51 (void) papiAttributeListGetCollection(request, NULL,
58 get_printer_id(operational, &queue, NULL);
59 if (queue == NULL) {
81 split_and_copy_attributes(keys, operational, NULL, &job_attributes);
84 if (papiAttributeListGetCollection(request, NULL,
[all...]
H A Dcups-move-job.c42 papi_attribute_t **operational = NULL, **job = NULL;
44 char *message = NULL;
45 char *job_printer_uri = NULL;
46 char *queue = NULL;
47 char *dest = NULL;
51 (void) papiAttributeListGetCollection(request, NULL,
57 status = papiAttributeListGetCollection(request, NULL,
75 } else if (queue == NULL) {
85 job_printer_uri = NULL;
[all...]
H A Dget-jobs.c42 papi_job_t *j = NULL;
43 papi_attribute_t **operational = NULL;
45 char **req_attrs = NULL;
46 char *queue = NULL;
53 (void) papiAttributeListGetCollection(request, NULL,
60 get_printer_id(operational, &queue, NULL);
61 if (queue == NULL) {
74 (void) papiAttributeListGetString(operational, NULL,
76 (void) papiAttributeListGetBoolean(operational, NULL,
78 (void) papiAttributeListGetInteger(operational, NULL, "limi
[all...]
H A Dget-printer-attributes.c42 papi_printer_t p = NULL;
43 papi_attribute_t **operational = NULL;
44 papi_attribute_t **printer_attributes = NULL;
46 char **req_attrs = NULL;
47 char *doc_fmt = NULL;
48 char *queue = NULL;
51 (void) papiAttributeListGetCollection(request, NULL,
58 get_printer_id(operational, &queue, NULL);
59 if (queue == NULL) {
71 (void) papiAttributeListGetString(operational, NULL,
[all...]
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_error.c40 {NS_LDAP_SUCCESS, NULL},
41 {NS_LDAP_OP_FAILED, NULL},
42 {NS_LDAP_NOTFOUND, NULL},
43 {NS_LDAP_MEMORY, NULL},
44 {NS_LDAP_CONFIG, NULL},
45 {NS_LDAP_PARTIAL, NULL},
46 {NS_LDAP_INTERNAL, NULL},
47 {NS_LDAP_INVALID_PARAM, NULL},
48 {-1, NULL}
97 if (errorp == NULL || *error
[all...]

Completed in 234 milliseconds

1234567891011>>