/illumos-gate/usr/src/cmd/lp/lib/lp/ |
H A D | wherelist.c | 40 char * item, 44 wherelist (item, list) 45 register char *item; 53 if (STREQU(*list, item)) 39 wherelist( char * item, char ** list ) argument
|
H A D | charset.c | 40 char * item, 44 search_cslist (item, list) 45 register char *item; 55 else if (STREQU(item, NAME_ANY)) 56 return (item); 64 if (alias && STREQU(alias+1, item)) 39 search_cslist( char * item, char ** list ) argument
|
H A D | searchlist.c | 40 char * item, 44 searchlist (item, list) 45 register char *item; 52 else if (STREQU(item, NAME_ANY) || STREQU(item, NAME_ALL)) 61 STREQU(*list, item) 78 char * item, 82 searchlist_with_terminfo (item, list) 83 register char *item; 90 else if (STREQU(item, NAME_AN 39 searchlist( char * item, char ** list ) argument 77 searchlist_with_terminfo( char * item, char ** list ) argument [all...] |
/illumos-gate/usr/src/lib/passwdutil/ |
H A D | __get_authtoken_attr.c | 41 __get_authtoken_attr(char *name, pwu_repository_t *rep, attrlist *item) argument 63 res = rops[i]->getattr(name, item, rep);
|
/illumos-gate/usr/src/lib/libeti/menu/common/ |
H A D | newitem.c | 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); 56 free(item); /* Can't have a null name */ 60 DescriptionLen(item) = strlen(desc); 62 DescriptionLen(item) = 0; 65 return (item); [all...] |
/illumos-gate/usr/src/cmd/eeprom/i386/ |
H A D | benv.h | 50 void *item; member in struct:eplist 59 extern void add_item(void *item, eplist_t *list);
|
/illumos-gate/usr/src/cmd/fm/fminject/common/ |
H A D | inj_util.c | 34 inj_item2str(inj_itemtype_t item) argument 38 return (item >= 0 && 39 item < sizeof (names) / sizeof (char *) ? names[item] : "???"); 43 inj_item2mem(inj_itemtype_t item) argument 49 assert(item >= 0 && item < sizeof (mems) / sizeof (inj_memtype_t)); 50 return (mems[item]);
|
/illumos-gate/usr/src/cmd/backup/lib/ |
H A D | getdate.y | 124 | spec item 127 item : time { label
|
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/ |
H A D | getdate.y | 256 | spec item 268 item : time { label
|
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/ |
H A D | av1394_list.c | 32 * two structure members of each item are the 'next' and 'prev' pointers. 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) argument 71 ITEM(item)->i_next = NULL; 72 ITEM(item)->i_prev = lp->l_tail; 76 lp->l_head = lp->l_tail = item; 78 lp->l_tail->i_next = item; 79 lp->l_tail = item; 86 * Inserts item i 89 av1394_list_put_head(av1394_list_t *lp, void *item) argument 111 av1394_list_item_t *item; local [all...] |
/illumos-gate/usr/src/lib/libnisdb/ |
H A D | 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 *mode function in class:item [all...] |
/illumos-gate/usr/src/lib/libc/port/locale/ |
H A D | nl_langinfo.c | 42 #define _REL(BASE) ((int)item-BASE) 47 nl_langinfo_l(nl_item item, locale_t loc) argument 56 switch (item) { 178 nl_langinfo(nl_item item) argument 180 return (nl_langinfo_l(item, uselocale(NULL)));
|
/illumos-gate/usr/src/common/crypto/ecc/ |
H A D | secitem.c | 68 SECITEM_AllocItem(PRArenaPool *arena, SECItem *item, unsigned int len, argument 78 if (item == NULL) { 88 PORT_Assert(item->data == NULL); 89 result = item; 116 if (item != NULL) { 117 item->data = NULL; 118 item->len = 0; 122 SECITEM_FreeItem(result, (item == NULL) ? PR_TRUE : PR_FALSE); 125 * If item is not NULL, the above has set item [all...] |
H A D | ecdecode.c | 70 hexString2SECItem(PRArenaPool *arena, SECItem *item, const char *str, argument 85 item->data = (unsigned char *) PORT_ArenaAlloc(arena, tmp/2, kmflag); 86 if (item->data == NULL) return NULL; 87 item->len = tmp/2; 101 item->data[i/2] = byteval; 107 return item;
|
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/ |
H A D | args.c | 71 * Report unrecognized item provided to '-z guidance' option. 74 Dbg_args_guidance_unknown(Lm_list *lml, const char *item) argument 79 dbg_print(lml, MSG_INTL(MSG_ARG_NG_UNKNOWN), item);
|
/illumos-gate/usr/src/cmd/lp/lib/access/ |
H A D | allowed.c | 174 char * item, 179 allowed (item, allow, deny) 180 char *item, 186 if (bang_searchlist(item, allow)) 193 if (bang_searchlist(item, deny)) 173 allowed( char * item, char ** allow, char ** deny ) argument
|
H A D | bang.c | 152 bang_searchlist(char *item, char **list) argument 162 if (bangequ(item, *list)) 174 bang_dellist(char ***plist, char *item) argument 196 * the item to be deleted is the name ``fred''. What will 200 * routine; the item (``fred'') is ADDED to an opposite list 212 if (bangequ(item, *pl)) {
|
/illumos-gate/usr/src/lib/print/libpapi-common/common/ |
H A D | list.c | 43 list_append(void ***list, void *item) argument 47 if ((list == NULL) || (item == NULL)) { 52 if (item != NULL) { 74 (*list)[count] = item; 144 list_remove(void ***list, void *item) argument 148 if ((list == NULL) || (*list == NULL) || (item == NULL)) 153 if ((*list)[count] == item) { /* mark the location of item */ 155 item = NULL; 159 if (item [all...] |
/illumos-gate/usr/src/lib/print/libprint/common/ |
H A D | list.c | 44 * list_append() takes in a list (type **) and a pointer to an item to add 45 * to the list and returns a new list with the new item appended on the 51 list_append(void **list, void *item) argument 54 syslog(LOG_DEBUG, "list_append(0x%x, 0x%x)", list, item); 56 if (item == NULL) 62 list[0] = item; 82 list[count] = item; 89 list_append_unique(void **list, void *item, int (*cmp)(void *, void*)) argument 91 if (list_locate(list, cmp, item)) 94 list = list_append(list, item); [all...] |
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | pmHelpController.java | 49 * request presentation of the specified help item. 54 pmHelpItem item = viewPanel.loadItemForTag(tag); 59 public void showHelpItem(pmHelpItem item) { argument 60 if (item != null) 61 showHelpItem(item.tag);
|
/illumos-gate/usr/src/cmd/stat/common/ |
H A D | 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;
|
/illumos-gate/usr/src/uts/common/io/xge/hal/include/ |
H A D | xge-list.h | 32 * struct xge_list_t - List item. 33 * @prev: Previous list item. 34 * @next: Next list item. 72 * xge_list_first_get - Return the first item from the linked list. 75 * Returns the next item from the header. 76 * Returns NULL if the next item is header itself 92 * xge_list_remove - Remove the specified item from the linked list. 93 * item: element of the list 95 * Remove item from a list. 98 static inline void xge_list_remove(xge_list_t *item) argument [all...] |
/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | hsearch.c | 64 ENTRY item; member in struct:_hash_s 77 free(((Hash_t*)obj)->item.key); 117 ENTRY* hsearch(ENTRY item, ACTION action) argument 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*);
|
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_pq.c | 67 void *item = p->dtpq_items[index]; local 68 return (p->dtpq_value(item, p->dtpq_arg)); 72 dt_pq_insert(dt_pq_t *p, void *item) argument 79 p->dtpq_items[i] = item;
|
/illumos-gate/usr/src/cmd/sh/ |
H A D | 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));
|