/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/ |
H A D | prof_set.c | 48 prf_data_t new_data; local 49 new_data = profile_make_prf_data(file->data->filespec); 50 if (new_data == NULL) { 53 retval = k5_mutex_init(&new_data->lock); 55 new_data->root = NULL; 56 new_data->flags = file->data->flags & ~PROFILE_FILE_SHARED; 57 new_data->timestamp = 0; 58 new_data->upd_serial = file->data->upd_serial; 64 free(new_data); 68 file->data = new_data; [all...] |
/illumos-gate/usr/src/lib/libcmdutils/common/ |
H A D | custr.c | 88 char *new_data; local 99 if ((new_data = malloc(new_datalen)) == NULL) { 108 (void) memcpy(new_data, cus->cus_data, 116 cus->cus_data = new_data;
|
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | tsd.c | 55 void (**new_data)(void *); 112 if ((new_data = lmalloc(new_nkeys * sizeof (void *))) == NULL) { 118 new_data[0] = TSD_UNALLOCATED; 121 (void) memcpy(new_data, old_data, 124 tsdm->tsdm_destro = new_data;
|
/illumos-gate/usr/src/uts/sun4/io/ |
H A D | cbe.c | 188 cbe_data_t *new_data = kmem_alloc(sizeof (cbe_data_t), KM_SLEEP); local 196 new_data->cbe_level10_inum = add_softintr(PIL_10, 199 new_data->cbe_level1_inum = add_softintr(PIL_1, 202 return (new_data);
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | avl.h | 174 * Insert "new_data" in "tree" in the given "direction" either after 180 * new_data - new data to insert 184 extern void avl_insert_here(avl_tree_t *tree, void *new_data, void *here,
|
/illumos-gate/usr/src/cmd/nscd/ |
H A D | nscd_access.c | 221 nscd_acc_data_t *old_data, *new_data; local 231 new_data = _nscd_get(new); 233 if (old_data != new_data) { 236 _nscd_release(new_data); 237 return (new_data); 240 /* if old_data == new_data, both must be NULL */
|
/illumos-gate/usr/src/common/avl/ |
H A D | avl.c | 482 avl_insert(avl_tree_t *tree, void *new_data, avl_index_t where) argument 493 ASSERT(((uintptr_t)new_data & 0x7) == 0); 496 node = AVL_DATA2NODE(new_data, off); 560 * Insert "new_data" in "tree" in the given "direction" either after or 574 void *new_data, 585 ASSERT(new_data != NULL); 596 diff = tree->avl_compar(new_data, here); 607 diff = tree->avl_compar(new_data, 616 diff = tree->avl_compar(new_data, 625 avl_insert(tree, new_data, AVL_MKINDE 572 avl_insert_here( avl_tree_t *tree, void *new_data, void *here, int direction) argument [all...] |
/illumos-gate/usr/src/lib/libsecdb/common/ |
H A D | secdb.c | 259 kv_t *new_data; local 270 new_data = nkva->data; 273 new_data[i].key = _strdup_null(old_data[i].key); 274 new_data[i].value = _strdup_null(old_data[i].value);
|
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_map.c | 74 void **new_data = dt_zalloc(dtp, nsize); local 76 if (new_data == NULL) { 81 bcopy(*data, new_data, osize); 84 *data = new_data;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_dns.c | 910 const uchar_t *new_data; local 912 new_data = get_domain_name(header, data, data_end, name, 916 return (new_data - data);
|
/illumos-gate/usr/src/uts/common/io/usb/clients/usbecm/ |
H A D | usbecm.c | 1245 mblk_t *new_data = NULL; local 1282 if ((new_data = allocb(new_data_len, 0)) == NULL) { 1288 bzero(new_data->b_wptr, new_data_len); 1290 bcopy(tmp->b_rptr, new_data->b_wptr, MBLKL(tmp)); 1291 new_data->b_wptr += MBLKL(tmp); 1294 new_data->b_wptr = new_data->b_rptr + new_data_len; 1306 if (new_data) { 1307 br->bulk_data = msgpullup(new_data, -1); /* msg allocated! */ 1368 if (new_data) { [all...] |
/illumos-gate/usr/src/uts/sun4u/montecarlo/io/ |
H A D | scsb.c | 2405 uchar_t mask, new_data = 0; local 2419 new_data |= (data & mask) << 2; 2423 new_data |= (data & mask); 2428 new_data |= (data & mask) << 1; 2432 new_data |= (data & mask) >> 4; 2437 new_data |= data; /* set any remaining bits */ 2441 old_data, new_data); 2444 return (new_data);
|