Searched refs:item (Results 176 - 200 of 256) sorted by relevance

1234567891011

/illumos-gate/usr/src/uts/common/io/xge/hal/xgehal/
H A Dxgehal-device-fp.c444 xge_list_t *item; local
448 xge_list_for_each(item, &hldev->ring_channels) {
451 channel = xge_container_of(item, xge_hal_channel_t, item);
478 xge_list_t *item; local
482 xge_list_for_each(item, &hldev->fifo_channels) {
485 channel = xge_container_of(item, xge_hal_channel_t, item);
H A Dxgehal-mgmtaux.c881 xge_list_t *item; local
951 xge_list_for_each(item, &hldev->ring_channels) {
952 channel = xge_container_of(item, xge_hal_channel_t, item);
989 xge_list_for_each(item, &hldev->fifo_channels) {
990 channel = xge_container_of(item, xge_hal_channel_t, item);
1262 xge_list_t *item; local
1276 xge_list_for_each(item, &hldev->ring_channels) {
1277 channel = xge_container_of(item, xge_hal_channel_
[all...]
H A Dxgehal-stats.c975 xge_list_t *item; local
1000 xge_list_for_each(item, &hldev->ring_channels) {
1001 channel = xge_container_of(item, xge_hal_channel_t, item);
1007 xge_list_for_each(item, &hldev->fifo_channels) {
1008 channel = xge_container_of(item, xge_hal_channel_t, item);
H A Dxgehal-device.c4476 xge_list_t *item; local
4480 xge_list_for_each(item, &hldev->ring_channels) {
4482 channel = xge_container_of(item, xge_hal_channel_t, item);
4535 xge_list_for_each(item, &hldev->fifo_channels) {
4538 channel = xge_container_of(item,
4539 xge_hal_channel_t, item);
4548 xge_list_for_each(item, &hldev->ring_channels) {
4551 channel = xge_container_of(item,
4552 xge_hal_channel_t, item);
4579 xge_list_t *item; local
5434 xge_list_t *item; local
6770 xge_queue_item_t *item = (xge_queue_item_t *)(void *)item_buf; local
[all...]
/illumos-gate/usr/src/uts/common/sys/1394/targets/av1394/
H A Dav1394_impl.h72 av1394_list_item_t *l_head; /* first item */
73 av1394_list_item_t *l_tail; /* last item */
317 void av1394_list_put_tail(av1394_list_t *lp, void *item);
318 void av1394_list_put_head(av1394_list_t *lp, void *item);
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dfncs.c45 list_append(void ***list, void *item) argument
49 if ((list == NULL) || (item == NULL)) {
54 if (item != NULL) {
78 (*list)[count] = item;
85 list_remove(void ***list, void *item) argument
90 if ((list == NULL) || (*list == NULL) || (item == NULL))
103 /* copy up to item */
104 for (i = 0; (((*list)[i] != NULL) && ((*list)[i] != item)); i++)
106 /* copy after item */
107 if ((*list)[i] == item)
[all...]
/illumos-gate/usr/src/cmd/avs/sv/
H A Dsvadm.c1429 ENTRY item; local
1443 item.key = strdup(vol);
1444 item.data = (void *)setnumber;
1445 if (hsearch(item, ENTER) == NULL) {
1459 ENTRY *found_entry, item; local
1462 item.key = path;
1464 if ((found_entry = hsearch(item, FIND)) != NULL) {
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmHelpSearchPanel.java149 // place item titles in search result panel
210 // load the selected item into view panel
255 pmHelpItem item = (pmHelpItem) l.getModel().
257 Debug.info("HELP: doubleclick: " + item.tag);
258 parentPanel.controller.showHelpItem(item);
442 Debug.info("HELP: getItemsForKeywords item: " + i);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/
H A Drsend.kshlib209 for item in "type" "origin" "volblocksize" "aclinherit" "aclmode" \
215 zfs get -H -o property,value,source $item $dtst1 >> \
217 zfs get -H -o property,value,source $item $dtst2 >> \
/illumos-gate/usr/src/cmd/sendmail/db/btree/
H A Dbt_put.c73 * Insert an item into the tree.
112 /* Adjust the index for the new item if it's a DB_AFTER op. */
116 /* Remove the current item if it's a DB_CURRENT op. */
133 /* Put the new/replacement item onto the page. */
171 * We're either overwriting the data item of a key/data pair
172 * or we're adding the data item only, i.e. a new duplicate.
221 * 3. Append a new data item (a new duplicate).
222 * 4. Insert a new data item (a new duplicate).
223 * 5. Overflow item: delete and re-add the data item
[all...]
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Ddextern.h172 typedef struct item { struct
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslimpl.h55 void *item; member in struct:kssl_chain_s
/illumos-gate/usr/src/uts/common/io/xge/hal/include/
H A Dxgehal-channel.h267 * @item: List item; used to maintain a list of open channels.
346 xge_list_t item; member in struct:__anon6597
/illumos-gate/usr/src/cmd/fm/fminject/common/
H A Dinj_defn.c53 item2hash(inj_itemtype_t item) argument
57 assert(item >= 0 && item < sizeof (inj_defns) / sizeof (inj_hash_t));
65 return (&inj_defns[item]);
/illumos-gate/usr/src/boot/sys/boot/i386/boot0/
H A Dboot0.S295 next_entry: incw %dx # Next item
326 callw putx # item
514 movw $item,%si # Display
588 * Various menu strings. 'item' goes after 'prompt' to save space.
596 item: .ascii " "; .byte ' '|0x80 label
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm727 my ($item, $len, $space);
729 foreach $item (@list) { # find the widest list item.
730 $len = length($item);
747 foreach $item (@list) {
753 $space = $width - length($item);
754 $text .= $item . ' ' x $space if ($space > 0);
1567 # directory name is in $pattern, it will be prepended to each item.
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lib/fruaccess/
H A Dfru_access.c624 char *item; local
645 token = tokenizer(token, "|", &item, &matched);
651 token = tokenizer(item, "|", &item, &matched);
653 /* check the last remaining item */
654 if ((item != 0x00) &&
655 (strcmp(item, cont_desc_str) == 0)) {
673 token = tokenizer(token, ",", &item, &matched);
700 token = tokenizer(item, ",", &item,
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dxec.c599 struct openlist *item,*next; local
600 for(item=olist;item;item=next)
602 next = item->next;
603 free((void*)item);
950 struct openlist *item; local
958 for(item=buff.olist;item;item
1018 struct openlist *item; local
[all...]
/illumos-gate/usr/src/cmd/avs/dsw/
H A Diiadm.c2399 ENTRY item, *found; local
2439 item.key = ptr;
2440 item.data = (void *) 0;
2441 (void) hsearch(item, ENTER);
2448 item.key = vol_list[ i ];
2449 found = hsearch(item, FIND);
2882 ENTRY item, *ip; local
2910 item.key = lp->shadow_vol;
2911 item.data = (char *)lp;
2912 if (hsearch(item, ENTE
3896 ENTRY item, *found; local
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/blade/fruaccess/
H A Dfru_access.c630 char *item; local
649 token = tokenizer(token, "|", &item, &matched);
655 token = tokenizer(item, "|", &item, &matched);
657 /* check the last remaining item */
658 if ((item != 0x00) &&
659 (strcmp(item, cont_desc_str) == 0)) {
677 token = tokenizer(token, ",", &item, &matched);
693 token = tokenizer(item, ",", &item,
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dexacct.c72 ea_object_t *item; local
74 item = kmem_cache_alloc(exacct_object_cache, KM_SLEEP);
75 bzero(item, sizeof (ea_object_t));
76 (void) ea_set_item(item, catalog, buf, bufsz);
77 return (item);
94 ea_object_t *item; local
96 item = ea_alloc_item(catalog, buf, bufsz);
97 (void) ea_attach_to_group(grp, item);
98 return (item);
/illumos-gate/usr/src/lib/libcmd/common/
H A Dgrep.c122 typedef struct Item_s /* list item - sue me for waste */
318 Item_t *item; member in struct:__anon3093
326 Item_t *item = r_x->item; local
328 item->hits++;
336 sfprintf(sfstdout, "%s:", item->string);
/illumos-gate/usr/src/cmd/psrinfo/
H A Dpsrinfo.c154 ins_link(struct link **ins, struct link *item) argument
156 item->l_next = *ins;
157 *ins = item;
/illumos-gate/usr/src/cmd/lms/tools/
H A DATNetworkTool.cpp150 struct ifreq *item = &ifr[i]; local
152 if (item->ifr_flags & IFF_LOOPBACK)
155 addresses.insert(&item->ifr_addr);
/illumos-gate/usr/src/tools/scripts/
H A Dcheck_rtime.pl84 # or if the test is to make sure the item is not specified:
864 my ($item, $class, $type, $verdef, $obj) =
911 my ($item, $class, $type, $verdef, $obj) =
931 my ($item, $real_obj, $obj) =
937 # Skip unrecognized item

Completed in 163 milliseconds

1234567891011