Searched defs:item (Results 1 - 25 of 177) sorted by relevance

12345678

/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dwherelist.c40 char * item,
44 wherelist (item, list)
45 register char *item;
53 if (STREQU(*list, item))
39 wherelist( char * item, char ** list ) argument
H A Dcharset.c40 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 Dsearchlist.c40 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.c41 __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 Dnewitem.c43 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 Dbenv.h50 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 Dinj_util.c34 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 Dgetdate.y124 | spec item
127 item : time { label
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dgetdate.y256 | spec item
268 item : time { label
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_list.c32 * 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 Ddb_item.cc52 /* 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 Dnl_langinfo.c42 #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 Dsecitem.c68 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 Decdecode.c70 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 Dargs.c71 * 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 Dallowed.c174 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 Dbang.c152 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 Dlist.c43 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 Dlist.c44 * 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 DpmHelpController.java49 * 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 Dmnt.c110 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 Dxge-list.h32 * 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 Dhsearch.c64 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 Ddt_pq.c67 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 Dhash.c52 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));

Completed in 89 milliseconds

12345678