HomeSort by: relevance | last modified time | path
    Searched defs:item (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/bin/expr/
expr.y 85 expr: item
129 item: STRING label
  /src/lib/libmenu/
userptr.c 39 /* the following is defined in item.c */
40 extern ITEM _menui_default_item;
43 * Set the item user pointer data
46 set_item_userptr(ITEM *param_item, char *userptr)
48 ITEM *item = (param_item != NULL) ? param_item : &_menui_default_item; local in function:set_item_userptr
50 item->userptr = userptr;
56 * Return the item user pointer
59 item_userptr(ITEM *item)
    [all...]
item.c 1 /* $NetBSD: item.c,v 1.12 2012/03/21 05:33:27 matt Exp $ */
30 __RCSID("$NetBSD: item.c,v 1.12 2012/03/21 05:33:27 matt Exp $");
40 /* keep default item options for setting in new_item */
41 ITEM _menui_default_item = {
42 {NULL, 0}, /* item name struct */
43 {NULL, 0}, /* item description struct */
45 0, /* is item visible? */
46 0, /* is item selected? */
47 0, /* row item is on */
48 0, /* column item is on *
251 ITEM *item = (param_item != NULL) ? param_item : &_menui_default_item; local in function:set_item_value
    [all...]
internals.c 45 * to calculate the widest item entry, then work out how many columns
47 * be. Once the layout is determined the neighbours of each item is
48 * calculated and the item structures updated.
70 /* fill in the row and column value of the item */
86 * Calculate the neighbours for an item in menu.
92 ITEM *item; local in function:_menui_calc_neighbours
96 item = menu->items[item_no];
100 item->up = item;
    [all...]
  /src/sys/arch/hpc/hpc/platid_gen/
gram.y 82 %type <node>item
89 list item { LIST_ADD($1, $2); $$ = $1; } |
92 item: label
  /src/usr.bin/grep/
queue.c 62 struct qentry *item; local in function:enqueue
64 item = grep_malloc(sizeof(struct qentry));
65 item->data.dat = grep_malloc(sizeof(char) * x->len);
66 item->data.len = x->len;
67 item->data.line_no = x->line_no;
68 item->data.off = x->off;
69 memcpy(item->data.dat, x->dat, x->len);
70 item->data.file = x->file;
72 STAILQ_INSERT_TAIL(&queue, item, list);
75 item = dequeue()
84 struct qentry *item; local in function:dequeue
98 struct qentry *item; local in function:printqueue
110 struct qentry *item; local in function:clearqueue
    [all...]
  /src/lib/libpam/modules/pam_echo/
pam_echo.c 59 int err, i, item; local in function:_pam_echo
74 item = PAM_RHOST;
78 item = -1;
81 item = PAM_SERVICE;
84 item = PAM_TTY;
87 item = PAM_RUSER;
90 item = PAM_USER;
93 item = -1;
97 if (item == -1)
99 err = pam_get_item(pamh, item, &str)
    [all...]
  /src/sys/arch/hpcmips/stand/pbsdboot/
layout.c 50 DLGITEMTEMPLATE item; local in function:CreateMainWindow
153 item = *(DLGITEMTEMPLATE*)mem;
199 if (item.id == 0xffff) {
200 item.id = i + 1;
204 debug_printf(TEXT("Control: %04x "), item.id);
210 item.dwExtendedStyle,
213 item.style, // Style
214 item.x * ratio_x / 100,
215 item.y * ratio_y / 100 + cmdbar_height,
216 item.cx * ratio_x / 100
    [all...]
  /src/lib/libutil/
parsedate.y 132 | spec item
135 item: label
  /src/sys/arch/hpc/stand/hpcboot/menu/
tabwindow.cpp 157 TC_ITEM item; local in function:TabWindow::init
159 item.mask = TCIF_PARAM | TCIF_IMAGE;
160 item.iImage =(int)_id;
161 item.lParam = reinterpret_cast <LPARAM>(this);
163 _base.insert(_id, item);
  /src/lib/libpam/modules/pam_exec/
pam_exec.c 59 int item; member in struct:__anon75fcaca30108
100 const void *item; local in function:_pam_exec
103 pam_err = pam_get_item(pamh, env_items[i].item, &item);
104 if (pam_err != PAM_SUCCESS || item == NULL)
107 (const char *)item);
  /src/sys/arch/amiga/stand/bootblock/boot/
amigatypes.h 46 struct TagItem {u_int32_t item; void *data;}; member in struct:TagItem
  /src/sys/external/bsd/drm2/dist/drm/via/
via_mm.c 125 struct via_memblock *item; local in function:via_mem_alloc
145 item = kzalloc(sizeof(*item), GFP_KERNEL);
146 if (!item) {
154 &item->mm_node,
158 &item->mm_node,
163 retval = idr_alloc(&dev_priv->object_idr, item, 1, 0, GFP_KERNEL);
168 list_add(&item->owner_list, &file_priv->obj_list);
174 ((item->mm_node.start) << VIA_MM_ALIGN_SHIFT);
180 drm_mm_remove_node(&item->mm_node)
    [all...]
  /src/sys/kern/
subr_pcq.c 38 * P1. initialize an item
43 * P3. atomic_store_release(&pcq->pcq_items[c], item) to publish
44 * the item in the space it reserved
56 * unconsumed but potentially published item (fails if item
60 * published item
67 * C6. use the item
78 * Initializing item at P1 is dependency-ordered before usage of
79 * item at C6, so items placed by pcq_put can be safely used by
88 * C2 (if not, pcq_get fails in `if (item == NULL) retur
238 void *item; local in function:pcq_get
    [all...]
  /src/usr.sbin/bthcid/
client.c 63 * request. The event is used to expire the item.
65 struct item { struct
71 LIST_ENTRY(item) next;
77 static LIST_HEAD(,item) item_list;
189 struct item *item; local in function:process_client
207 LIST_FOREACH(item, &item_list, next) {
208 if (bdaddr_same(&rp.laddr, &item->laddr) == 0
209 || bdaddr_same(&rp.raddr, &item->raddr) == 0)
212 evtimer_del(&item->ev)
261 struct item *item; local in function:send_client_request
312 struct item *item = arg; local in function:process_item
325 struct item *item; local in function:lookup_pin
    [all...]
  /src/sys/external/bsd/drm/dist/shared-core/
sis_mm.c 342 ITEM_TYPE item; local in function:sis_final_context
349 retval = setFirst(set, &item);
351 DRM_DEBUG("free video memory 0x%lx\n", item);
353 sis_free(item);
355 mmFreeMem((PMemBlock) item);
357 retval = setNext(set, &item);
363 retval = setFirst(set, &item);
365 DRM_DEBUG("free agp memory 0x%lx\n", item);
366 mmFreeMem((PMemBlock) item);
367 retval = setNext(set, &item);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
aperture_gm.c 247 const char *item; local in function:alloc_resource
254 item = "low GM space";
265 item = "high GM space";
276 item = "fence";
293 gvt_err("fail to allocate resource %s\n", item);
firmware.c 166 const char *item; local in function:verify_firmware
175 item = (s); file = (u64)(a); request = (u64)(b); \
202 item, file, request);
  /src/sys/external/bsd/drm2/dist/drm/sis/
sis_mm.c 96 struct sis_memblock *item; local in function:sis_drm_alloc
112 item = kzalloc(sizeof(*item), GFP_KERNEL);
113 if (!item) {
121 &item->mm_node,
123 offset = item->mm_node.start;
126 item->req.size = mem->size;
127 sis_malloc(&item->req);
128 if (item->req.size == 0)
130 offset = item->req.offset
    [all...]
  /src/sys/dev/usb/
ums.c 186 struct hid_item item; local in function:ums_attach
260 while (hid_get_item(d, &item)) {
261 if (item.kind != hid_input
262 || HID_GET_USAGE_PAGE(item.usage) != HUP_GENERIC_DESKTOP
263 || item.report_ID != uha->reportid)
265 if (HID_GET_USAGE(item.usage) == HUG_X) {
266 sc->sc_ms.sc_calibcoords.minx = item.logical_minimum;
267 sc->sc_ms.sc_calibcoords.maxx = item.logical_maximum;
269 if (HID_GET_USAGE(item.usage) == HUG_Y) {
270 sc->sc_ms.sc_calibcoords.miny = item.logical_minimum
    [all...]
  /src/lib/libpam/modules/pam_radius/
pam_radius.c 198 const void *item; local in function:do_challenge
245 if ((retval = pam_get_item(pamh, PAM_CONV, &item)) != PAM_SUCCESS) {
249 conv = (const struct pam_conv *)item;
  /src/lib/libpam/modules/pam_ssh/
pam_ssh.c 168 const void *item; local in function:pam_sm_authenticate
190 pass = (pam_get_item(pamh, PAM_AUTHTOK, &item) == PAM_SUCCESS &&
191 item != NULL);
  /src/lib/libtelnet/
sra.c 560 const void *item; local in function:check_user
599 * back as a changed value of the PAM_USER item.
601 if ((e = pam_get_item(pamh, PAM_USER, &item)) ==
603 strlcpy(name, item, SMALL_LEN);
  /src/sys/arch/prep/pnpbus/
pnpbus.c 263 int tag, size, item; local in function:pnpbus_scan
276 item = tag_small_item_name(tag);
277 switch (item) {
297 item = tag_large_item_name(tag);
298 if (item == LargeVendorItem &&
301 else if (item == MemoryRange)
319 item = tag_small_item_name(tag);
320 switch (item) {
347 int tag, size, item; local in function:pnp_getpna
375 item = tag_small_item_name(tag)
    [all...]
  /src/sys/dev/raidframe/
rf_paritylog.c 201 /* removing last item from queue */
275 /* Return an initialized struct of info to be logged. Build one item
276 * per physical disk address, one item per region.
364 /* removing last item in the list */
372 /* removing first item in the list */
378 /* removing an item from the middle of
667 RF_ParityLogData_t *item; local in function:rf_ParityLogAppend
691 /* lock the region for the first item in logData */
711 /* process each item in logData */
713 /* remove an item from logData *
    [all...]

Completed in 68 milliseconds

1 2