Searched refs:item (Results 151 - 175 of 256) sorted by relevance

1234567891011

/illumos-gate/usr/src/cmd/fm/modules/common/disk-monitor/
H A Dutil.c268 void *item; local
275 while ((item = queue_remove(qp)) != NULL) {
276 qp->data_dealloc(item);
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsetlist.c93 addlist(struct cl_attr ***listp, char *item) argument
97 /* If the list is already there, scan for this item */
100 if (strcmp(item, (*listp)[i]->name) == 0)
107 if (new_cl_attr(item) == NULL)
/illumos-gate/usr/src/tools/scripts/
H A Dinterface_check.pl335 my $item = $TopVer{$Line} ? 'TOP_VERSION' : 'VERSION';
336 print INTFILE "$item\t$Line$InheritVers\n";
381 my ($item, $obj, $alias) = split(/\s+/, $line, 3);
393 my ($item, $class, $type, $verdef, $obj) =
H A Dinterface_cmp.pl61 # where each item in the tripple is a regular expression, used to
67 # where each item in the pair is a regular expression, used to
130 my ($item, $sym_re, $ver_re, $obj_re) =
137 my ($item, $sym_re, $ver_re, $obj_re) =
144 my ($item, $ver_re, $obj_re) = split(/\s+/, $Line, 3);
392 die "$file: unrecognized item on line $LineNum: $Line\n";
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Droute.c562 mib_item_t *item; local
620 if ((item = mibget(sd)) == NULL)
630 for (; item != NULL; item = item->next_item) {
631 if (item->mib_id != 0)
633 if (item->group == MIB2_IP) {
635 ((mib2_ip_t *)item->valp)->ipRouteEntrySize;
646 for (; item != NULL; item
[all...]
/illumos-gate/usr/src/lib/libfru/libfruraw/
H A Draw_access.c418 char *item; local
437 token = tokenizer(token, "|", &item, &matched);
443 token = tokenizer(item, "|", &item, &matched);
445 /* check the last remaining item */
446 if ((item != 0x00) &&
447 (strcmp(item, cont_desc_str) == 0)) {
465 token = tokenizer(token, ",", &item, &matched);
483 token = tokenizer(item, ",", &item,
[all...]
/illumos-gate/usr/src/lib/fm/libfmnotify/common/
H A Dlibfmnotify.c353 char *item, *tmpstr; local
357 item = strtok(tmpstr, delim);
358 while (item && strtok(NULL, delim) != NULL)
370 item = strtok(tmpstr, delim);
371 (*arr)[0] = strdup(item);
372 while ((item = strtok(NULL, delim)) != NULL)
373 (*arr)[i++] = strdup(item);
/illumos-gate/usr/src/lib/libpam/
H A Dpam_framework.c166 * PAM_DEBUG_ITEM (0x0002), log item values and
390 pam_set_item(pam_handle_t *pamh, int item_type, const void *item) argument
436 if (item == NULL) {
440 pip->pi_addr = strdup((char *)item);
454 if (item != NULL)
455 (void) memcpy(pip->pi_addr, item, (unsigned int) size);
471 if (item != NULL) {
479 s = (struct pam_repository *)item;
501 item ? (void *)((struct pam_conv *)item)
543 pam_get_item(const pam_handle_t *pamh, int item_type, void **item) argument
[all...]
/illumos-gate/usr/src/uts/common/ipp/ipgpc/
H A Dclassifier.c373 ht_match_t *item; local
379 for (item = &fid_table[i]; item != NULL; item = item->next) {
387 if ((key = item->key) == 0) {
416 if (item->match_map != ipgpc_fid_list[key].insert_map) {
/illumos-gate/usr/src/cmd/print/scripts/
H A Dppdmgr751 # $2 - spec item
768 item=$(echo "${1}" | /bin/grep ${2})
770 item=${item#*\"}
772 echo "${item%\"}"
783 # $2 - spec item
791 item=$(echo "${1}" | /bin/grep ${2})
793 item=${item#*\:}
795 echo ${item
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_kutil.c1253 * Adds the given item to the AVL if it's
1259 * EEXIST The item is already in AVL
1262 smb_avl_add(smb_avl_t *avl, void *item) argument
1267 ASSERT(item);
1273 if (avl_find(&avl->avl_tree, item, &where) != NULL) {
1279 avl_insert(&avl->avl_tree, item, where);
1288 * Removes the given item from the AVL.
1289 * If no reference is left on the item
1294 smb_avl_remove(smb_avl_t *avl, void *item) argument
1300 ASSERT(item);
1331 smb_avl_lookup(smb_avl_t *avl, void *item) argument
1363 smb_avl_release(smb_avl_t *avl, void *item) argument
[all...]
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslapi.c46 static boolean_t kssl_enqueue(kssl_chain_t **head, void *item);
47 static void kssl_dequeue(kssl_chain_t **head, void *item);
195 * matches "item"
200 * This routine returns TRUE if the item was either successfully added to
204 kssl_enqueue(kssl_chain_t **head, void *item) argument
211 if (cur->item == item) {
222 newchain->item = item;
229 kssl_dequeue(kssl_chain_t **head, void *item) argument
[all...]
/illumos-gate/usr/src/lib/libshare/common/
H A Dlibshare.c240 * item per thread that has called sa_init().
246 struct doc2handle *item; local
249 for (item = sa_global_handles; item != NULL; item = item->next) {
250 if (item->root == root)
254 if (item != NULL)
255 return (item->handle);
262 struct doc2handle *item; local
288 struct doc2handle *item, *prev; local
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsrvsvc_svc.c425 smb_netsvcitem_t *item; local
437 item = list_head(&ns->ns_list);
438 while (item != NULL) {
439 tree = &item->nsi_un.nsi_tree;
465 item = list_next(&ns->ns_list, item);
678 smb_netsvcitem_t *item; local
709 item = list_head(&ns->ns_list);
710 while (item != NULL) {
711 ofile = &item
740 smb_netsvcitem_t *item; local
1498 smb_netsvcitem_t *item; local
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_parse.c191 /* Make sure t->item.name is set correctly */
192 if (t->item.name == 0)
193 t->item.name = t->dbId;
354 t->item.name = t->objPath;
H A Ddb_index_entry_c.c55 if (!xdr_pointer(xdrs, (char **)&ep->key, sizeof (item),
H A Ddb_scheme.cc72 descols[i].key_name = new item(srccols[i].key_name);
142 scols[keynum].key_name = new item(zcols[i].tc_name,
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmHelpIndexPanel.java138 // place item titles in search result panel
252 pmHelpItem item =
254 Debug.message("doubleclick: " + item.tag);
255 parentPanel.controller.showHelpItem(item);
/illumos-gate/usr/src/lib/libadutils/common/
H A Dlibadutils.h145 extern void adutils_set_debug(enum ad_debug item, int val);
/illumos-gate/usr/src/lib/fm/libfmd_msg/common/
H A Dfmd_msg.c50 * fmd_msg_getitem_nv - format a single message item for the given event
51 * fmd_msg_getitem_id - format a single message item for the given event code
673 fmd_msg_buf_printf(b, " "); /* array item delimiter */
985 * This function is the main engine for formatting an event message item, such
986 * as the Description field. It loads the item text from a message object,
987 * expands any variables defined in the item text, and then returns a newly-
993 nvlist_t *nvl, const char *dict, const char *code, fmd_msg_item_t item)
995 const char *istr = fmd_msg_items[item];
1010 * If <dict>.mo defines an item with the key <FMD_MSG_URLKEY> then it
1018 * If the item i
992 fmd_msg_getitem_locked(fmd_msg_hdl_t *h, nvlist_t *nvl, const char *dict, const char *code, fmd_msg_item_t item) argument
1367 fmd_msg_getitem(fmd_msg_hdl_t *h, const char *locale, nvlist_t *nvl, const char *code, fmd_msg_item_t item) argument
1450 fmd_msg_getitem_nv(fmd_msg_hdl_t *h, const char *locale, nvlist_t *nvl, fmd_msg_item_t item) argument
1469 fmd_msg_getitem_id(fmd_msg_hdl_t *h, const char *locale, const char *code, fmd_msg_item_t item) argument
[all...]
/illumos-gate/usr/src/lib/libnisdb/yptol/
H A Ddit_access_utils.c190 sf->e[i].element.match.item[j].name,
382 * in the array with the corresponding item name.
384 * equal to the number of item names associated with
391 t->e->element.match.item[i].name,
407 sf = mappingFromMap(t->e->element.match.item[i].name,
544 sf = mappingFromMap(t->e->element.match.item[i].name,
550 * indicates that the item name is not a splitfieldname
562 if (findVal(t->e->element.match.item[i].name,
566 t->e->element.match.item[i].name,
591 sf->e[k].element.match.item);
[all...]
/illumos-gate/usr/src/lib/libtnfprobe/
H A Dtrace_funcs.c78 #define PTR_DIFF(item, ref) \
79 ((tnf_ref32_t)((tnf_record_p)(item) - (tnf_record_p)(ref)))
/illumos-gate/usr/src/uts/common/tnf/
H A Dtnf_writer.c361 tnf_ref32_1(tnf_ops_t *ops, tnf_record_p item, tnf_record_p reference) argument
371 ((uintptr_t)item & TNF_BLOCK_MASK);
377 offset_delta = (tnf_ref32_t)(item - tnf_buf);
383 offset_delta = (tnf_ref32_t)(item - reference);
399 tnf_ref32_1(tnf_ops_t *ops, tnf_record_p item, tnf_record_p reference) argument
410 ((uintptr_t)item & TNF_BLOCK_MASK);
416 offset_delta = (tnf_ref32_t)(item - (tnf_record_p) file_start);
422 offset_delta = (tnf_ref32_t)(item - reference);
H A Dtrace_funcs.c72 #define PTR_DIFF(item, ref) \
73 ((tnf_ref32_t)((tnf_record_p)(item) - (tnf_record_p)(ref)))
/illumos-gate/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_drv.c1113 acpidev_class_list_t *item; local
1130 item = kmem_zalloc(sizeof (*item), KM_SLEEP);
1131 item->acl_class = clsp;
1133 /* Check for duplicated item. */
1149 item->acl_next = *listpp;
1150 *listpp = item;
1154 kmem_free(item, sizeof (*item));

Completed in 121 milliseconds

1234567891011