Home
last modified time | relevance | path

Searched refs:item (Results 1 – 25 of 586) sorted by relevance

12345678910>>...24

/onnv-gate/usr/src/lib/libldap4/misc/
H A Dldaptemplates.conf91 item jpegbtn "View Photo" jpegPhoto "Next Photo"
92 item audiobtn "Play Sound" audio
93 item cis,ro,sort "Also Known As" cn
94 item mail "E-Mail Address" mail
95 item cis "Work Phone" telephoneNumber
96 item cis "Fax Number" facsimileTelephoneNumber
97 item cis "Pager Number" pager
98 item mls "Work Address" postalAddress
99 item cis,sort "Title" title
100 item cis,ro "Uniqname" uid
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dperltoc.pod22 =item SYNOPSIS
26 =item Overview
28 =item Tutorials
30 =item Reference Manual
32 =item Internals and C Language Interface
34 =item Miscellaneous
36 =item Language-Specific
38 =item Platform-Specific
42 =item DESCRIPTION
44 =item AVAILABILITY
[all …]
H A Dperlfaq.pod75 =item perlfaq - this document
77 =item perlfaq1 - General Questions About Perl
79 =item perlfaq2 - Obtaining and Learning about Perl
81 =item perlfaq3 - Programming Tools
83 =item perlfaq4 - Data Manipulation
85 =item perlfaq5 - Files and Formats
87 =item perlfaq6 - Regular Expressions
89 =item perlfaq7 - General Perl Language Issues
91 =item perlfaq8 - System Interaction
93 =item perlfaq9 - Networking
[all …]
H A Dperl573delta.pod28 =item 11362
32 =item 11371
36 =item 11375
40 =item 11405
44 =item 11410
48 =item 11423
52 =item 11459
57 =item 11475
61 =item 11485
65 =item 11490
[all …]
H A Dperlmodlib.pod50 =item attributes
54 =item attrs
58 =item autouse
62 =item base
66 =item bigint
70 =item bignum
74 =item bigrat
78 =item blib
82 =item bytes
86 =item charnames
[all …]
/onnv-gate/usr/src/uts/common/sys/
H A Dtnf_writer.h128 #define tnf_char(ops, item, ref) (item) argument
131 #define tnf_int8(ops, item, ref) (item) argument
134 #define tnf_uint8(ops, item, ref) (item) argument
137 #define tnf_int16(ops, item, ref) (item) argument
140 #define tnf_uint16(ops, item, ref) (item) argument
143 #define tnf_int32(ops, item, ref) (item) argument
146 #define tnf_uint32(ops, item, ref) (item) argument
149 #define tnf_int64(ops, item, ref) (item) argument
152 #define tnf_uint64(ops, item, ref) (item) argument
155 #define tnf_float32(ops, item, ref) (item) argument
[all …]
/onnv-gate/usr/src/lib/libnisdb/
H A Dnis_hashitem.c271 __nis_hash_item_mt *item = arg; in __nis_insert_item_mt() local
275 if (item == 0 || __nis_lock_hash_table(table, 0, "nitmt") == 0) in __nis_insert_item_mt()
278 if ((*(pp = __find_item_mt(item->name, table, &key))) != 0) { in __nis_insert_item_mt()
283 (void) pthread_cond_init(&item->lock, 0); in __nis_insert_item_mt()
284 item->readers = item->writer = 0; in __nis_insert_item_mt()
285 item->last_reader_id = item->writer_id = INV_PTHREAD_ID; in __nis_insert_item_mt()
287 item->writer = 1; in __nis_insert_item_mt()
288 item->writer_id = pthread_self(); in __nis_insert_item_mt()
291 item->readers = 1; in __nis_insert_item_mt()
292 item->last_reader_id = pthread_self(); in __nis_insert_item_mt()
[all …]
/onnv-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_dlist.c96 dlist_t *item, in dlist_insert_ordered() argument
107 head = item; in dlist_insert_ordered()
115 result = (compare)(item->obj, iter->obj); in dlist_insert_ordered()
121 head = item; in dlist_insert_ordered()
122 item->next = iter; in dlist_insert_ordered()
123 iter->prev = item; in dlist_insert_ordered()
125 item->prev = iter->prev; in dlist_insert_ordered()
126 item->prev->next = item; in dlist_insert_ordered()
127 iter->prev = item; in dlist_insert_ordered()
128 item->next = iter; in dlist_insert_ordered()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/pqueue/
H A Dpqueue.c73 pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem)); in pitem_new() local
74 if (item == NULL) return NULL; in pitem_new()
76 pq_64bit_init(&(item->priority)); in pitem_new()
77 pq_64bit_assign(&item->priority, &priority); in pitem_new()
79 item->data = data; in pitem_new()
80 item->next = NULL; in pitem_new()
82 return item; in pitem_new()
86 pitem_free(pitem *item) in pitem_free() argument
88 if (item == NULL) return; in pitem_free()
90 pq_64bit_free(&(item->priority)); in pitem_free()
[all …]
H A Dpq_test.c65 pitem *item; in main() local
70 item = pitem_new(3, NULL); in main()
71 pqueue_insert(pq, item); in main()
73 item = pitem_new(1, NULL); in main()
74 pqueue_insert(pq, item); in main()
76 item = pitem_new(2, NULL); in main()
77 pqueue_insert(pq, item); in main()
79 item = pqueue_find(pq, 1); in main()
80 fprintf(stderr, "found %ld\n", item->priority); in main()
82 item = pqueue_find(pq, 2); in main()
[all …]
/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DMarkup.cxx40 MarkupItem::MarkupItem(const MarkupItem &item) in MarkupItem() argument
41 : type(item.type), index(item.index) in MarkupItem()
43 switch (item.type) { in MarkupItem()
45 origin = new ConstPtr<Origin>(*item.origin); in MarkupItem()
48 text = new Text(*item.text); in MarkupItem()
51 sdText = new SdText(*item.sdText); in MarkupItem()
56 nChars = item.nChars; in MarkupItem()
61 void MarkupItem::operator=(const MarkupItem &item) in operator =() argument
65 if (item.type == Markup::entityStart) { in operator =()
66 *origin = *item.origin; in operator =()
[all …]
/onnv-gate/usr/src/common/openssl/doc/ssl/
H A Dssl.pod45 =item B<SSL_METHOD> (SSL Method)
51 =item B<SSL_CIPHER> (SSL Cipher)
58 =item B<SSL_CTX> (SSL Context)
64 =item B<SSL_SESSION> (SSL Session)
69 =item B<SSL> (SSL Connection)
86 =item B<ssl.h>
94 =item B<ssl2.h>
100 =item B<ssl3.h>
106 =item B<ssl23.h>
113 =item B<tls1.h>
[all …]
/onnv-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_list.c69 av1394_list_put_tail(av1394_list_t *lp, void *item) in av1394_list_put_tail() argument
71 ITEM(item)->i_next = NULL; in av1394_list_put_tail()
72 ITEM(item)->i_prev = lp->l_tail; in av1394_list_put_tail()
76 lp->l_head = lp->l_tail = item; in av1394_list_put_tail()
78 lp->l_tail->i_next = item; in av1394_list_put_tail()
79 lp->l_tail = item; in av1394_list_put_tail()
89 av1394_list_put_head(av1394_list_t *lp, void *item) in av1394_list_put_head() argument
91 ITEM(item)->i_next = lp->l_head; in av1394_list_put_head()
92 ITEM(item)->i_prev = NULL; in av1394_list_put_head()
96 lp->l_head = lp->l_tail = item; in av1394_list_put_head()
[all …]
/onnv-gate/usr/src/lib/libast/common/port/
H A Dastlicense.c182 Item_t item[ITEMS]; member
192 lookup(register const Item_t* item, const char* name, int size) in lookup() argument
198 for (i = 0; item[i].data; i++) in lookup()
199 if (c == item[i].data[0] && size == item[i].size && !strncmp(name, item[i].data, size)) in lookup()
278 expand(Notice_t* notice, register Buffer_t* b, const Item_t* item) in expand() argument
288 if (t = item->data) in expand()
290 q = item->quote; in expand()
291 e = t + item->size; in expand()
306 if ((c = lookup(key, x, t - x - 1)) >= 0 && (x = notice->item[c].data)) in expand()
308 z = x + notice->item[c].size; in expand()
[all …]
/onnv-gate/usr/src/lib/libnsl/yp/
H A Ddbm.c143 datum item; in fetch() local
147 item = makdatum(pagbuf, i); in fetch()
148 if (item.dptr == NULL) { in fetch()
149 return (item); in fetch()
151 if (cmpdatum(key, item) == 0) { in fetch()
152 item = makdatum(pagbuf, i+1); in fetch()
153 if (item.dptr == NULL) in fetch()
155 return (item); in fetch()
164 datum item; in delete() local
170 item = makdatum(pagbuf, i); in delete()
[all …]
/onnv-gate/usr/src/ucblib/libdbm/
H A Ddbm.c54 int additem(char buf[PBLKSIZ], datum item);
146 datum item; in fetch() local
150 item = makdatum(pagbuf, i); in fetch()
151 if (item.dptr == NULL) in fetch()
152 return (item); in fetch()
153 if (cmpdatum(key, item) == 0) { in fetch()
154 item = makdatum(pagbuf, i+1); in fetch()
155 if (item.dptr == NULL) in fetch()
157 return (item); in fetch()
166 datum item; in delete() local
[all …]
/onnv-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_ht.c135 HT_ITEM *item; in ht_destroy_table() local
143 while ((item = ht_findfirst(handle, &iterator)) != 0) in ht_destroy_table()
144 (void) ht_remove_item(handle, item->hi_key); in ht_destroy_table()
234 HT_ITEM *item; in ht_add_item() local
253 if ((item = malloc(msize)) == 0) in ht_add_item()
256 item->hi_key = (char *)item + sizeof (HT_ITEM); in ht_add_item()
257 (void) memcpy(item->hi_key, key, key_len); in ht_add_item()
258 item->hi_data = (void *)data; in ht_add_item()
259 item->hi_flags = 0; in ht_add_item()
266 item->hi_next = handle->ht_table[h_index].he_head; in ht_add_item()
[all …]
/onnv-gate/usr/src/lib/smbsrv/libsmbns/common/
H A Dsmbns_netbios_cache.c47 static void hash_callback(HT_ITEM *item);
92 HT_ITEM *item; in smb_netbios_cache_getfirst() local
96 item = ht_findfirst(smb_netbios_cache, &iter->nbc_hti); in smb_netbios_cache_getfirst()
97 if (item == NULL || item->hi_data == NULL) { in smb_netbios_cache_getfirst()
102 entry = (struct name_entry *)item->hi_data; in smb_netbios_cache_getfirst()
115 HT_ITEM *item; in smb_netbios_cache_getnext() local
119 item = ht_findnext(&iter->nbc_hti); in smb_netbios_cache_getnext()
120 if (item == NULL || item->hi_data == NULL) { in smb_netbios_cache_getnext()
125 entry = (struct name_entry *)item->hi_data; in smb_netbios_cache_getnext()
145 HT_ITEM *item; in smb_netbios_cache_lookup() local
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/pod/
H A Dnested_items.t17 =head1 Test nested item lists
19 This is a test to ensure the nested =item paragraphs
24 =item 1
30 =item a
32 this is item a
34 =item b
36 this is item b
40 =item 2
46 =item a
48 this is item a
[all …]
/onnv-gate/usr/src/cmd/rpcsvc/rpc.bootparamd/
H A Dbootparam_ip_route.c210 mib_item_t *item; in free_itemlist() local
213 item = item_list; in free_itemlist()
214 item_list = item->next_item; in free_itemlist()
215 if (item->valp) in free_itemlist()
216 free(item->valp); in free_itemlist()
217 free(item); in free_itemlist()
235 mib_item_t *item; in get_ip_route() local
279 for (item = item_list; item; item = item->next_item) { in get_ip_route()
280 if ((item->group == MIB2_IP) && (item->mib_id == 0)) { in get_ip_route()
282 mip = (mib2_ip_t *)(void *)item->valp; in get_ip_route()
[all …]
/onnv-gate/usr/src/cmd/lp/lib/lp/
H A Dsearchlist.c40 char * item, in searchlist() argument
44 searchlist (item, list) in searchlist()
45 register char *item; in searchlist()
52 else if (STREQU(item, NAME_ANY) || STREQU(item, NAME_ALL))
61 STREQU(*list, item)
78 char * item, in searchlist_with_terminfo() argument
82 searchlist_with_terminfo (item, list) in searchlist_with_terminfo()
83 register char *item; in searchlist_with_terminfo()
90 else if (STREQU(item, NAME_ANY) || STREQU(item, NAME_ALL))
99 STREQU(*list, item)
[all …]
/onnv-gate/usr/src/lib/libshare/common/
H A Dlibsharecore.c141 xfs_sharelist_t *item; in alloc_sharelist() local
143 item = (xfs_sharelist_t *)malloc(sizeof (xfs_sharelist_t)); in alloc_sharelist()
144 if (item != NULL) in alloc_sharelist()
145 (void) memset(item, '\0', sizeof (xfs_sharelist_t)); in alloc_sharelist()
146 return (item); in alloc_sharelist()
159 xfs_sharelist_t *item, *prev; in fix_notice() local
172 item = alloc_sharelist(); in fix_notice()
173 if (item != NULL) { in fix_notice()
174 item->description = strdup(notice[i]); in fix_notice()
176 item->next = list; in fix_notice()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A Dhtmlview.pod37 =item foo
39 The foo item.
41 =item bar
43 The bar item.
49 =item *
51 The wiz item.
53 =item *
55 The waz item.
59 =item baz
61 The baz item.
[all …]
/onnv-gate/usr/src/lib/libumem/common/
H A Denvvar.c60 typedef int arg_process_t(const struct umem_env_item *item, const char *value);
285 item_uint_process(const umem_env_item_t *item, const char *item_arg) in item_uint_process() argument
311 (*item->item_uint_target) = (uint_t)result; in item_uint_process()
315 log_message("%s: %s: not a number\n", CURRENT, item->item_name); in item_uint_process()
319 log_message("%s: %s: overflowed\n", CURRENT, item->item_name); in item_uint_process()
324 item_size_process(const umem_env_item_t *item, const char *item_arg) in item_size_process() argument
380 (*item->item_size_target) = result; in item_size_process()
384 log_message("%s: %s: not a number\n", CURRENT, item->item_name); in item_size_process()
388 log_message("%s: %s: overflowed\n", CURRENT, item->item_name); in item_size_process()
393 umem_log_process(const umem_env_item_t *item, const char *item_arg) in umem_log_process() argument
[all …]
/onnv-gate/usr/src/lib/libeti/menu/common/
H A Dnewitem.c43 ITEM *item; in new_item() local
45 if (item = (ITEM *) calloc(1, sizeof (ITEM))) { in new_item()
47 *item = *Dfl_Item; in new_item()
50 Name(item) = name; in new_item()
51 Description(item) = desc; in new_item()
54 NameLen(item) = strlen(name); in new_item()
56 free(item); /* Can't have a null name */ in new_item()
60 DescriptionLen(item) = strlen(desc); in new_item()
62 DescriptionLen(item) = 0; in new_item()
65 return (item); in new_item()

12345678910>>...24