HomeSort by relevance Sort by last modified time
    Searched defs:item (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /onnv/onnv-gate/usr/src/common/openssl/crypto/pqueue/
pq_test.c 65 pitem *item; local
70 item = pitem_new(3, NULL);
71 pqueue_insert(pq, item);
73 item = pitem_new(1, NULL);
74 pqueue_insert(pq, item);
76 item = pitem_new(2, NULL);
77 pqueue_insert(pq, item);
79 item = pqueue_find(pq, 1);
80 fprintf(stderr, "found %ld\n", item->priority);
82 item = pqueue_find(pq, 2)
    [all...]
pqueue.c 73 pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem)); local
74 if (item == NULL) return NULL;
76 pq_64bit_init(&(item->priority));
77 pq_64bit_assign(&item->priority, &priority);
79 item->data = data;
80 item->next = NULL;
82 return item;
86 pitem_free(pitem *item)
88 if (item == NULL) return;
90 pq_64bit_free(&(item->priority))
158 pitem *item = pq->items; local
206 pitem *item = pq->items; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libeti/menu/common/
newitem.c 40 ITEM *
43 ITEM *item; local
45 if (item = (ITEM *) calloc(1, sizeof (ITEM))) {
47 *item = *Dfl_Item;
50 Name(item) = name;
51 Description(item) = desc;
54 NameLen(item) = strlen(name)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/1394/targets/av1394/
av1394_list.c 32 * two structure members of each item are the 'next' and 'prev' pointers.
40 #define ITEM(i) ((av1394_list_item_t *)(i))
55 * Returns pointer to the first item in the list (but does not remove it)
66 * Adds item to the end of the list
69 av1394_list_put_tail(av1394_list_t *lp, void *item)
71 ITEM(item)->i_next = NULL;
72 ITEM(item)->i_prev = lp->l_tail;
76 lp->l_head = lp->l_tail = item;
111 av1394_list_item_t *item; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/backup/lib/
getdate.y 124 | spec item
127 item : time { label
  /onnv/onnv-gate/usr/src/cmd/eeprom/i386/
benv.h 50 void *item; member in struct:eplist
59 extern void add_item(void *item, eplist_t *list);
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/cli/
getdate.y 256 | spec item
268 item : time { label
  /onnv/onnv-gate/usr/src/lib/libnisdb/
db_item.cc 52 /* Constructor: creates item using given character sequence and length */
53 item::item(char *str, int n) function in class:item
57 FATAL("item::item: cannot allocate space", DB_MEMORY_LIMIT);
63 /* Constructor: creates item by copying given item */
64 item::item(item *model function in class:item
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/menu/
mctl.c 105 char *item; local
108 item = (char *) menu_list(m, itemnum);
109 *(va_arg(args, char **)) = item;
129 * This code determines the first menu item reached
  /onnv/onnv-gate/usr/src/cmd/mms/lm/common/
lm_queue.c 208 lm_queue_ele_t *item; local
211 if ((item = (lm_queue_ele_t *)malloc(sizeof (lm_queue_ele_t)))
218 item->lmqe_cindex = index;
220 item->lmqe_tid = NULL;
222 item->lmqe_tid = *tid;
223 item->lmqe_cmd_tree = cmd;
224 item->lmqe_next = NULL;
225 if (pthread_mutex_init(&item->lmqe_mutex, NULL) != 0) {
230 if (pthread_cond_init(&item->lmqe_rv, NULL) != 0) {
245 cq->lmq_first = item;
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rand/
rand_vms.c 95 } item[32], *pitem; local
101 pitem = item;
123 while ((status = sys$getjpiw(0, &pid, 0, item, iosb, 0, 0))
  /onnv/onnv-gate/usr/src/common/openssl/ssl/
d1_lib.c 140 pitem *item = NULL; local
145 while( (item = pqueue_pop(s->d1->unprocessed_rcds.q)) != NULL)
147 OPENSSL_free(item->data);
148 pitem_free(item);
152 while( (item = pqueue_pop(s->d1->processed_rcds.q)) != NULL)
154 OPENSSL_free(item->data);
155 pitem_free(item);
159 while( (item = pqueue_pop(s->d1->buffered_messages)) != NULL)
161 frag = (hm_fragment *)item->data;
164 pitem_free(item);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
hsearch.c 64 ENTRY item; member in struct:_hash_s
77 free(((Hash_t*)obj)->item.key);
117 ENTRY* hsearch(ENTRY item, ACTION action)
119 ENTRY* hsearch(item, action)
120 ENTRY item;
129 if(!(o = (Hash_t*)dtmatch(Hashtab,item.key)) && action == ENTER &&
131 { o->item = item;
135 return o ? &(o->item) : NIL(ENTRY*);
  /onnv/onnv-gate/usr/src/cmd/stat/common/
mnt.c 110 mnt_t *item; local
147 item = safe_alloc(sizeof (mnt_t));
148 item->device_name =
150 item->mount_point =
152 item->devinfo =
154 item->minor = mnt.mnt_minor;
155 item->next = *which;
156 *which = item;
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/disk-monitor/
util.c 268 void *item; local
275 while ((item = queue_remove(qp)) != NULL) {
276 qp->data_dealloc(item);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
PlainText.pm 150 $self->item ("\n") if defined $$self{ITEM};
161 $self->item if defined $$self{ITEM};
186 [:\w]+ # The item has to be a simple word...
219 if (defined $$self{ITEM}) {
220 $self->item ($_ . "\n");
325 # An individual list item.
328 if (defined $$self{ITEM}) { $self->item }
439 sub item { subroutine
    [all...]
  /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
pmHelpController.java 49 * request presentation of the specified help item.
54 pmHelpItem item = viewPanel.loadItemForTag(tag); local
59 public void showHelpItem(pmHelpItem item) {
60 if (item != null)
61 showHelpItem(item.tag);
pmHelpRepository.java 79 * for each item
83 * add item to keyword entry
91 pmHelpItem item = (pmHelpItem) items.nextElement(); local
92 Enumeration keywords = item.keywords.elements();
98 v.addElement(item);
114 * for each item in itemDB
122 pmHelpItem item = (pmHelpItem) items.nextElement(); local
123 helpTitleDB.insert(item.title, item);
202 Debug.message("HELP: Starting help item load")
227 pmHelpItem item = new pmHelpItem(tagName); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sh/
hash.c 52 ENTRY item; member in struct:node
102 (*uscan)(&p->item);
131 while (p != 0 && (res = STRCMP(str, p->item.key)))
138 return(&(p->item));
149 henter(item)
150 ENTRY item;
154 p->item = item;
157 return(&(p->item));
  /onnv/onnv-gate/usr/src/lib/libldap4/include/
hsearch.h 21 HASH_ENTRY item; member in struct:node
45 HASH_ENTRY *hsearch_s(HASH_TABLE *hash_table, HASH_ENTRY item, ACTION action);
  /onnv/onnv-gate/usr/src/lib/libnsl/nis/gen/
nis_hash.c 65 * find_item(name, table) -- finds the item called <name> in <table>, or
66 * returns a pointer to the right place to insert an item with that name
111 * This function inserts the passed item into a hash table as pointed
112 * to by table. It returns 1 if the item was inserted or 0 if the item
114 * item in the table.
118 NIS_HASH_ITEM *item, /* item to insert */
124 if (item == 0 || item->name == 0 || table == 0
172 NIS_HASH_ITEM *item, *cur, *prev; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/xge/hal/xgehal/
xge-queue.c 27 * xge_queue_item_data - Get item's data.
28 * @item: Queue item.
30 * Returns: item data(variable size). Note that xge_queue_t
33 * user-defined portion of the queue item.
35 void* xge_queue_item_data(xge_queue_item_t *item)
37 return (char *)item + sizeof(xge_queue_item_t);
41 * __queue_consume - (Lockless) dequeue an item from the specified queue.
47 __queue_consume(xge_queue_t *queue, int data_max_size, xge_queue_item_t *item)
59 xge_list_remove(&elem->item);
154 xge_queue_item_t *item = (xge_queue_item_t *)(void *)item_buf; local
325 xge_list_t *item; local
417 xge_queue_item_t *item = (xge_queue_item_t *)(void *)item_buf; local
    [all...]
xgehal-channel.c 300 xge_list_t *item; local
312 xge_list_for_each(item, &device->free_channels) {
315 tmp = xge_container_of(item, xge_hal_channel_t, item);
383 xge_list_remove(&channel->item);
384 xge_list_insert(&channel->item, &device->fifo_channels);
387 xge_list_remove(&channel->item);
388 xge_list_insert(&channel->item, &device->ring_channels);
524 xge_list_t *item; local
533 xge_list_for_each(item, &hldev->free_channels)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefspack/
rules.h 45 struct item { struct
48 struct item *i_next;
58 EXTERN struct item list_hd;
59 EXTERN struct item gign_hd;
60 EXTERN struct item lign_hd;
61 EXTERN struct item *last_list;
62 EXTERN struct item *last_gign;
63 EXTERN struct item *last_lign;
74 * Define values for item struct flags
  /onnv/onnv-gate/usr/src/cmd/gss/gsscred/
gsscred_file.c 261 char fullEntry[MAX_ENTRY_LEN+1], *item, *item_buf, *name_buf; local
286 if ((item = strtok(fullEntry, dilims)) == NULL)
292 item_len = strlen(item);
300 if (strncmp(item, name->value, name_len) != 0) {
318 if (strncmp(item, krb5_ntok_prefix,
322 if ((item_buf = strstr(item, gss_u_name)) == NULL)
356 if ((item = strtok(NULL, dilims)) == NULL)
358 *uidOut = atol(item);
370 if ((item = strtok(NULL, dilims)) == NULL)
373 if (strcmp(item, uid) == 0
    [all...]

Completed in 659 milliseconds

1 2 3 4 5 6 7