Searched refs:NULL (Results 1 - 15 of 15) sorted by relevance
/pkg/src/modules/ |
H A D | _varcet.c | 37 PyObject *action = NULL; 38 PyObject *facets = NULL; 39 PyObject *keylist = NULL; 41 PyObject *act_attrs = NULL; 42 PyObject *attr = NULL; 43 PyObject *value = NULL; 45 PyObject *res = NULL; 47 PyObject *any_ret = NULL; 48 PyObject *facet_ret = NULL; 53 PyObject *publisher = NULL; [all...] |
H A D | arch.py | 30 NULL = ffi.NULL variable 38 if buf == NULL: 39 return NULL 44 return NULL 49 if tmp == NULL: 50 return NULL 54 if buf == NULL: 63 buf = NULL 67 if buf1 == NULL an [all...] |
H A D | liblist.c | 39 if ((n = malloc(sizeof (liblist_t))) == NULL) { 41 return (NULL); 44 n->head = NULL; 45 n->tail = NULL; 57 libnode_t *temp = NULL; 72 libnode_t *n = NULL; 75 return (NULL); 77 if ((n = malloc(sizeof (libnode_t))) == NULL) { 79 return (NULL); 83 n->verlist = NULL; [all...] |
H A D | elf.c | 67 if ((str = elf_strptr(dyn->elf, dyn->dynstr, n->nameoff)) == NULL) { 94 if ((str = elf_strptr(dyn->elf, dyn->dynstr, n->nameoff)) == NULL) { 99 if ((ent = Py_BuildValue("[s,O]", str, pverlist)) == NULL) { 119 if ((str = elf_strptr(dyn->elf, dyn->dynstr, n->nameoff)) == NULL) { 171 static char *kwlist[] = {"f", "elfhash", "sha256", "sha512t_256", NULL}; 201 return (NULL); 209 return (NULL); 235 hdrinfo_t *hi = NULL; 236 PyObject *pdict = NULL; 238 return (NULL); [all...] |
H A D | elfextract.c | 136 char *id = NULL; 138 if ((id = malloc(EI_NIDENT)) == NULL) { 140 return (NULL); 146 return (NULL); 152 return (NULL); 178 char *ident = NULL; 199 "elf.so`gethead: argument 'elf' must not be NULL"); 200 return (NULL); 203 if ((hdr = malloc(sizeof (GElf_Ehdr))) == NULL) { 205 return (NULL); [all...] |
H A D | pspawn.py | 167 spawn_args.append(ffi.NULL) 176 spawn_env.append(ffi.NULL) 179 s_action = ffi.NULL 186 rc = lib.posix_spawnp(pid, filename.encode(), s_action, ffi.NULL,
|
H A D | sysattr.py | 63 pair = ffi.NULL 78 while pair != ffi.NULL:
|
/pkg/src/modules/actions/ |
H A D | _common.c | 45 PyObject *exc = NULL; 46 PyObject *val = NULL; 47 PyObject *pkg_actions = NULL; 53 if ((pkg_actions = PyImport_ImportModule("pkg.actions")) == NULL) { 64 if ((exc = PyObject_GetAttrString(pkg_actions, name)) == NULL) { 70 if ((val = Py_BuildValue("OO", action, key_aname)) != NULL) { 78 * These routines are expected to return NULL in an exception case per CPython 79 * calling conventions. Whenver NULL is returned, an exception should already 90 PyObject *key_aname = NULL; 91 PyObject *key_attr = NULL; [all...] |
H A D | _actions.c | 62 if (av == NULL) 88 if (str == NULL) 102 if (av == NULL) 109 if ((list = PyList_New(2)) == NULL) 127 if ((val = Py_BuildValue("sis", str, pos, msg)) != NULL) { 138 if ((val = Py_BuildValue("ss", str, msg)) != NULL) { 153 char *s = NULL; 154 char *str = NULL; 155 char *hashstr = NULL; 156 char *keystr = NULL; [all...] |
/pkg/src/util/mkcert/ |
H A D | mkcert.c | 50 X509 *x509 = NULL; 51 EVP_PKEY *pkey = NULL; 52 FILE *fp = NULL; 64 PEM_write_PrivateKey(fp, pkey, NULL, NULL, 0, NULL, NULL); 98 X509_NAME *name = NULL; 100 if ((pkeyp == NULL) || (*pkeyp == NULL)) { [all...] |
/pkg/src/modules/solver/ |
H A D | py_solver.c | 174 if (old != NULL) { 175 con_iterptrs(old, NULL, decptr); 184 #define BAILOUT(exception, string) {PyErr_SetString(exception, string); return (NULL);} 208 PyVarObject_HEAD_INIT(NULL, 0) 210 PyObject_HEAD_INIT(NULL) 257 if (self->msat_instance != NULL) 285 if ((self = (msat_solver *) type->tp_alloc(type, 0)) == NULL) 286 return (NULL); 294 if ((self->msat_instance = solver_new()) == NULL) { 296 return (NULL); [all...] |
H A D | solver.c | 977 if (s->wlists != NULL) { 1178 if (solver_propagate(s) == NULL)
|
/pkg/src/zoneproxy/zoneproxyd/ |
H A D | zoneproxyd.c | 281 if (listener == NULL) { 283 return (NULL); 292 if (mutex_init(&listener->pl_lock, USYNC_THREAD, NULL) < 0) { 294 return (NULL); 307 if (pair == NULL) { 309 return (NULL); 378 if (op_pair == NULL) { 546 thr_exit(NULL); 568 thr_exit(NULL); 669 struct addrinfo *ai = NULL; [all...] |
/pkg/src/zoneproxy/zoneproxy-client/ |
H A D | zoneproxy-client.c | 143 dparam.desc_ptr = (door_desc_t *)NULL; 145 dparam.rbuf = NULL; 193 dparam.desc_ptr = (door_desc_t *)NULL; 195 dparam.rbuf = NULL; 243 dparam.rbuf = NULL; 306 (void) fflush(NULL); 321 (void) wait4(pid, &status, 0, NULL); 351 priv_set_t *pPrivSet = NULL; 352 priv_set_t *lPrivSet = NULL; 354 if ((pPrivSet = priv_str_to_set("basic", ",", NULL)) [all...] |
/pkg/src/zoneproxy/zoneproxy-adm/ |
H A D | zoneproxy-adm.c | 69 params.desc_ptr = NULL; 71 params.rbuf = NULL; 72 params.rsize = NULL;
|
Completed in 356 milliseconds