Searched refs:NULL (Results 101 - 125 of 10793) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dnfs_nfssec.c68 * - NULL if an error occurred.
83 return (NULL);
89 return (NULL);
93 if (ret_val == NULL) {
95 return (NULL);
116 * - NULL if an error occurred.
125 char **seclist = NULL;
129 if ((fp = fopen(NFSSEC_CONF, "r")) == NULL) {
134 return (NULL);
139 if (seclist == NULL) {
[all...]
/illumos-gate/usr/src/cmd/powertop/common/
H A Dsuggestions.c68 sugg_t *new, *n, *pos = NULL;
73 if (text == NULL)
76 if (sugg == NULL) {
80 if ((new = calloc(1, sizeof (sugg_t))) == NULL)
83 if (sb_msg != NULL)
86 if (text != NULL)
95 new->prev = NULL;
96 new->next = NULL;
98 for (n = sugg; n != NULL; n = n->next) {
102 if (weight > n->weight && pos == NULL)
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Drmap.c37 return (vmem_create("rmap", NULL, 0, 1, NULL, NULL, NULL, 0,
45 return (vmem_create("rmap", NULL, 0, 1, NULL, NULL, NULL, 0, VM_SLEEP));
71 else if (vmem_add(mp, (void *)addr, size, VM_NOSLEEP) == NULL)
/illumos-gate/usr/src/cmd/sendmail/db/os/
H A Dos_tmpdir.c59 NULL
64 p = NULL;
72 if ((p = getenv("TMPDIR")) != NULL && p[0] == '\0') {
77 if (p == NULL && (p = getenv("TEMP")) != NULL && p[0] == '\0') {
82 if (p == NULL && (p = getenv("TMP")) != NULL && p[0] == '\0') {
87 if (p == NULL &&
88 (p = getenv("TempFolder")) != NULL && p[0] == '\0') {
97 if (p == NULL) {
[all...]
/illumos-gate/usr/src/common/ficl/
H A Dcallback.c12 ficlOutputFunction textOut = NULL;
14 if (callback != NULL) {
15 if (callback->textOut != NULL)
17 else if ((callback->system != NULL) &&
25 if ((textOut == NULL) && (ficlSystemGlobal != NULL)) {
30 if (textOut == NULL)
43 ficlOutputFunction errorOut = NULL;
45 if (callback != NULL) {
46 if (callback->errorOut != NULL)
[all...]
/illumos-gate/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_lib.c51 pkinit_req_opts *opts = NULL;
53 *reqopts = NULL;
55 if (opts == NULL)
75 if (opts != NULL)
84 pkinit_plg_opts *opts = NULL;
86 *plgopts = NULL;
88 if (opts == NULL)
107 if (opts != NULL)
115 if (*in == NULL) return;
116 if ((*in)->signedAuthPack.data != NULL)
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/i18n/
H A Dm_text.c51 static char *domain = NULL; /* remember domain chosen */
52 static char *locale = NULL; /* remember locale loaded */
67 if (new == NULL)
70 if (lastmsg != NULL)
91 m_textdomain(NULL);
101 if (domain != NULL)
103 domain = str==NULL ? NULL : strdup(str);
120 nlocale = setlocale(LC_MESSAGES, NULL); /* Query current locale */
122 || nlocale == NULL /* impossibl
[all...]
/illumos-gate/usr/src/cmd/krb5/ldap_util/
H A Dkdb5_ldap_list.c48 if (list == NULL)
51 for (i = 0; *list != NULL; list++) {
66 if (list == NULL)
83 if (list == NULL)
85 for (; *list != NULL; list++) {
87 *list = NULL;
104 char *str = NULL;
105 char *token = NULL;
106 char *ptrptr = NULL;
111 if ((buffer == NULL) || (lis
[all...]
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_messages.h235 NULL, \
245 NULL, \
255 NULL, \
265 NULL, \
275 NULL, \
285 NULL, \
295 NULL, \
305 NULL, \
318 NULL, \
329 NULL, \
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dsharetab.c62 static char *line = NULL;
63 static share_t *sh = NULL;
68 if (line == NULL) {
70 if (line == NULL)
73 if (sh == NULL) {
75 if (sh == NULL)
80 if (p == NULL)
85 if (sh->sh_path == NULL)
87 sh->sh_res = (char *)strtok_r(NULL, w, &lasts);
88 if (sh->sh_res == NULL)
[all...]
/illumos-gate/usr/src/lib/print/libipp-listener/common/
H A Dcups-reject-jobs.c42 papi_attribute_t **operational = NULL;
44 char *queue = NULL;
47 (void) papiAttributeListGetCollection(request, NULL,
54 get_printer_id(operational, &queue, NULL);
55 if (queue == NULL) {
61 if ((status = papiPrinterPause(svc, queue, NULL)) != PAPI_OK) {
H A Dpause-printer.c42 papi_attribute_t **operational = NULL;
44 char *queue = NULL;
47 (void) papiAttributeListGetCollection(request, NULL,
54 get_printer_id(operational, &queue, NULL);
55 if (queue == NULL) {
61 if ((status = papiPrinterPause(svc, queue, NULL)) != PAPI_OK) {
/illumos-gate/usr/src/lib/libbsm/common/
H A Dgetdment.c66 * returns pointer to the new structure, else returns NULL on error.
73 if (_dmap == NULL) {
76 if (_dmap == NULL)
77 return (NULL);
79 dmapf = NULL;
95 if (_dmap == NULL)
97 if (dmapf == NULL)
112 if (_dmap == NULL)
114 if (dmapf != NULL) {
116 dmapf = NULL;
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dreslist.c43 LDAPMessage *tmp, *prev = NULL;
45 for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
48 if ( tmp == NULL )
49 return( NULL );
51 if ( prev == NULL )
55 tmp->lm_chain = NULL;
H A Dopen.c65 * these by passing a NULL "ld" to ldap_set_option(). Everything in
84 __declspec ( thread ) char *nsldapi_gmatched = NULL;
85 __declspec ( thread ) char *nsldapi_gldaperror = NULL;
94 if ( (*mp = CreateMutex(NULL, FALSE, NULL)) == NULL )
105 if ( (mutexp = malloc( sizeof(LDAP_MUTEX_T) )) != NULL ) {
106 pthread_mutex_init( mutexp, NULL );
160 if ( LDMatched != NULL )
164 if ( LDError != NULL )
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Denv.c42 if (cp == NULL || cp == var) {
43 if (method == NULL)
49 if (method == NULL)
66 for (p = env; *p != NULL; p++) {
68 assert(tmp != NULL);
74 if (*p == NULL)
75 return (NULL);
107 * Max. of env, three SMF_ variables, and terminating NULL.
112 for (p = environ; *p != NULL; p++)
117 if (nenv == NULL)
[all...]
/illumos-gate/usr/src/cmd/getent/
H A Ddogetpw.c45 if (list == NULL || *list == NULL) {
46 while ((pwp = getpwent()) != NULL)
49 for (; *list != NULL; list++) {
63 ((pwp = getpwuid(uid)) == NULL)) {
67 if (pwp == NULL)
/illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/
H A Dstrtok.c64 if (s == NULL && (s = last) == NULL)
65 return (NULL);
79 last = NULL;
80 return (NULL);
97 s = NULL;
/illumos-gate/usr/src/uts/common/gssapi/
H A Dgssdmod.c40 NULL
48 mutex_init(&gssrpcb_lock, NULL, MUTEX_DEFAULT, NULL);
49 mutex_init(&__kgss_mech_lock, NULL, MUTEX_DEFAULT, NULL);
50 zone_key_create(&gss_zone_key, gss_zone_init, NULL, gss_zone_fini);
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/
H A Dldap_exp.c91 /* setup_master_key_name */ NULL,
92 /* store_master_key */ NULL,
93 /* fetch_master_key */ NULL /* krb5_ldap_fetch_mkey */,
94 /* verify_master_key */ NULL /* krb5_ldap_verify_master_key */,
95 /* Search enc type */ NULL,
96 /* Change pwd */ NULL
/illumos-gate/usr/src/cmd/fs.d/
H A Ddeffs.c49 char *deffs = NULL;
56 defopen(NULL); /* close default file */
59 if ((fp = fopen(REMOTE, "r")) != NULL) {
60 if (fgets(buf, sizeof (buf), fp) != NULL)
64 if (deffs == NULL)
68 return (deffs != NULL ? deffs : "ufs");
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutinit.c153 AcpiGbl_AddressRangeList[i] = NULL;
160 AcpiGbl_MutexInfo[i].Mutex = NULL;
190 AcpiGbl_GpeXruptListHead = NULL;
191 AcpiGbl_GpeFadtBlocks[0] = NULL;
192 AcpiGbl_GpeFadtBlocks[1] = NULL;
195 AcpiGbl_GlobalEventHandler = NULL;
196 AcpiGbl_SciHandlerList = NULL;
202 AcpiGbl_GlobalNotify[0].Handler = NULL;
203 AcpiGbl_GlobalNotify[1].Handler = NULL;
204 AcpiGbl_ExceptionHandler = NULL;
[all...]
/illumos-gate/usr/src/lib/libipsecutil/common/
H A Dipsec_libssl_setup.c84 static X509_NAME *(*d2i_X509_NAME_fn)() = NULL;
85 static int (*X509_NAME_print_ex_fp_fn)() = NULL;
86 static char *(*ERR_get_error_fn)() = NULL;
87 static char *(*ERR_error_string_fn)() = NULL;
88 static void (*SSL_load_error_strings_fn)() = NULL;
89 static void (*ERR_free_strings_fn)() = NULL;
90 static void (*CRYPTO_set_locking_callback_fn)() = NULL;
91 static void (*CRYPTO_set_id_callback_fn)() = NULL;
92 static void (*X509_NAME_free_fn)() = NULL;
93 static int (*CRYPTO_num_locks_fn)() = NULL;
[all...]
/illumos-gate/usr/src/cmd/rexd/
H A Dsharetab.c63 static char *line = NULL;
64 static share_t *sh = NULL;
68 if (line == NULL) {
70 if (line == NULL)
73 if (sh == NULL) {
75 if (sh == NULL)
80 if (p == NULL)
85 if (sh->sh_path == NULL)
87 sh->sh_res = strtok(NULL, w);
88 if (sh->sh_res == NULL)
[all...]
/illumos-gate/usr/src/lib/print/libpapi-dynamic/common/
H A Dservice.c51 if (svc != NULL)
60 char *result = NULL;
65 if (result == NULL) {
68 if ((cups = getenv("CUPS_SERVER")) != NULL) {
76 if (result == NULL)
85 static char *result = NULL;
87 if (result == NULL) {
89 uri_t *uri = NULL;
94 if (uri != NULL)
107 if (svc->so_handle != NULL) /* alread
[all...]

Completed in 95 milliseconds

1234567891011>>