Searched refs:item (Results 76 - 100 of 1345) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/hsearch/
H A Dhsearch.c90 __db_hsearch(item, action)
91 ENTRY item;
101 DB_INIT_DBT(key, item.key, strlen(item.key) + 1);
106 DB_SET_DBT(val, item.data, strlen(item.data) + 1);
130 item.data = (char *)val.data;
136 retval.key = item.key;
137 retval.data = item.data;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/hsearch/
H A Dhsearch.c90 __db_hsearch(item, action)
91 ENTRY item;
101 DB_INIT_DBT(key, item.key, strlen(item.key) + 1);
106 DB_SET_DBT(val, item.data, strlen(item.data) + 1);
130 item.data = (char *)val.data;
136 retval.key = item.key;
137 retval.data = item.data;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/share/automake-1.11/Automake/
H A DItem.pm33 =item C<new Automake::Item $name>
51 =item C<$item-E<gt>name>
53 Return the name of C<$item>.
63 =item C<$item-E<gt>def ($cond)>
65 Return the definition for this item in condition C<$cond>, if it
80 =item C<$item-E<gt>rdef ($cond)>
82 Return the definition for this item i
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/quagga/lib/
H A Dworkqueue.c44 struct work_queue_item *item; local
47 item = XCALLOC (MTYPE_WORK_QUEUE_ITEM,
50 return item;
54 work_queue_item_free (struct work_queue_item *item) argument
56 XFREE (MTYPE_WORK_QUEUE_ITEM, item);
129 struct work_queue_item *item; local
133 if (!(item = work_queue_item_new (wq)))
135 zlog_err ("%s: unable to get new queue item", __func__);
139 item->data = data;
140 listnode_add (wq->items, item);
150 struct work_queue_item *item = listgetdata (ln); local
245 struct work_queue_item *item; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/quagga/lib/
H A Dworkqueue.c44 struct work_queue_item *item; local
47 item = XCALLOC (MTYPE_WORK_QUEUE_ITEM,
50 return item;
54 work_queue_item_free (struct work_queue_item *item) argument
56 XFREE (MTYPE_WORK_QUEUE_ITEM, item);
129 struct work_queue_item *item; local
133 if (!(item = work_queue_item_new (wq)))
135 zlog_err ("%s: unable to get new queue item", __func__);
139 item->data = data;
140 listnode_add (wq->items, item);
150 struct work_queue_item *item = listgetdata (ln); local
245 struct work_queue_item *item; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/quagga/lib/
H A Dworkqueue.c44 struct work_queue_item *item; local
47 item = XCALLOC (MTYPE_WORK_QUEUE_ITEM,
50 return item;
54 work_queue_item_free (struct work_queue_item *item) argument
56 XFREE (MTYPE_WORK_QUEUE_ITEM, item);
129 struct work_queue_item *item; local
133 if (!(item = work_queue_item_new (wq)))
135 zlog_err ("%s: unable to get new queue item", __func__);
139 item->data = data;
140 listnode_add (wq->items, item);
150 struct work_queue_item *item = listgetdata (ln); local
245 struct work_queue_item *item; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/drm/
H A Ddrm_hashtab.h57 extern int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item);
58 extern int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item,
61 extern int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item);
65 extern int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/configfs/
H A DMakefile7 configfs-objs := inode.o file.o dir.o symlink.o mount.o item.o
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/drm/
H A Ddrm_hashtab.h57 extern int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item);
58 extern int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item,
61 extern int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item);
65 extern int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/configfs/
H A DMakefile7 configfs-objs := inode.o file.o dir.o symlink.o mount.o item.o
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/rp-l2tp/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/rp-pppoe/src/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/rp-l2tp/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/rp-pppoe/src/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/share/libtool/libltdl/
H A Dslist.c44 items, you must remember that each item passed back to your
45 DELETE function will be a boxed item that must be slist_unbox()ed
48 e.g. void boxed_delete (void *item) { item_free (slist_unbox (item)); }
54 slist_delete (SList *head, void (*delete_fct) (void *item)) argument
68 /* Call FIND repeatedly with MATCHDATA and each item of *PHEAD, until
70 the matching item is destructively removed from *PHEAD, and the value
74 the stale item, you should probably return that from FIND if
76 every item in a boxed list before operating on its contents. */
168 slist_cons (SList *item, SLis argument
353 SList *item = (SList *) malloc (sizeof *item); local
366 slist_unbox(SList *item) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/rp-l2tp/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/rp-pppoe/src/libevent/
H A Dhash.h41 void hash_insert(hash_table *tab, void *item);
42 void hash_remove(hash_table *tab, void *item);
43 void *hash_find(hash_table *tab, void *item);
44 void *hash_find_next(hash_table *tab, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/wps/common/include/
H A Dwps_sslist.h29 WPS_SSLIST *wps_sslist_add(WPS_SSLIST **head, void *item);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/lib/
H A Dnl_langinfo.c33 rpl_nl_langinfo (nl_item item) argument
35 switch (item)
83 item = D_FMT;
88 item = D_T_FMT;
93 item = T_FMT;
109 return nl_langinfo (item);
134 nl_langinfo (nl_item item) argument
136 switch (item)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libogg/
H A DMakefile.am19 for item in $(EXTRA_DIST); do \
20 if test -d $$item; then \
21 echo -n "cleaning dir $$item for distribution..."; \
22 rm -rf `find $(distdir)/$$item -name .svn`; \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/wget/lib/
H A Dnl_langinfo.c33 rpl_nl_langinfo (nl_item item) argument
35 switch (item)
83 item = D_FMT;
88 item = D_T_FMT;
93 item = T_FMT;
109 return nl_langinfo (item);
134 nl_langinfo (nl_item item) argument
136 switch (item)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libogg/
H A DMakefile.am19 for item in $(EXTRA_DIST); do \
20 if test -d $$item; then \
21 echo -n "cleaning dir $$item for distribution..."; \
22 rm -rf `find $(distdir)/$$item -name .svn`; \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libogg/
H A DMakefile.am19 for item in $(EXTRA_DIST); do \
20 if test -d $$item; then \
21 echo -n "cleaning dir $$item for distribution..."; \
22 rm -rf `find $(distdir)/$$item -name .svn`; \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wget/lib/
H A Dnl_langinfo.c33 rpl_nl_langinfo (nl_item item) argument
35 switch (item)
83 item = D_FMT;
88 item = D_T_FMT;
93 item = T_FMT;
109 return nl_langinfo (item);
134 nl_langinfo (nl_item item) argument
136 switch (item)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/Common/
H A DMyVector.h55 int Add(T item) argument
58 ((T *)_items)[_size] = item;
61 void Insert(int index, T item) argument
64 ((T *)_items)[index] = item;
82 int FindInSorted(const T& item) const
89 if (item == midValue)
91 if (item < midValue)
99 int AddToUniqueSorted(const T& item) argument
106 if (item == midValue)
108 if (item < midValu
191 Add(const T& item) argument
193 Insert(int index, const T& item) argument
225 AddToSorted(const T& item) argument
[all...]

Completed in 164 milliseconds

1234567891011>>