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

1 2 3 4 5 6 7 8 91011>>

  /src/external/mpl/bind/dist/bin/tests/system/digdelv/
yamlget.py 21 for item in yaml.safe_load_all(f):
29 item = item[key] variable
34 print(item)
  /src/bin/expr/
expr.y 85 expr: item
129 item: STRING label
  /src/external/gpl2/gettext/dist/gettext-tools/src/
str-list.h 40 const char **item; member in struct:string_list_ty
  /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
50 item->userptr = userptr;
56 * Return the item user pointer
59 item_userptr(ITEM *item)
    [all...]
  /src/external/mit/libcbor/dist/examples/
readfile.c 33 cbor_item_t* item = cbor_load(buffer, length, &result); local
72 cbor_describe(item, stdout);
75 cbor_decref(&item);
  /src/external/mit/libcbor/dist/src/cbor/
tags.c 11 cbor_item_t *item = _CBOR_MALLOC(sizeof(cbor_item_t)); local
12 _CBOR_NOTNULL(item);
14 *item = (cbor_item_t){
20 return item;
23 cbor_item_t *cbor_tag_item(const cbor_item_t *item) {
24 assert(cbor_isa_tag(item));
25 return item->metadata.tag_metadata.tagged_item;
28 uint64_t cbor_tag_value(const cbor_item_t *item) {
29 assert(cbor_isa_tag(item));
30 return item->metadata.tag_metadata.value
    [all...]
  /src/external/mit/libcbor/dist/test/
pretty_printer_test.c 27 cbor_item_t *item = cbor_load(data, 37, &res); local
28 cbor_describe(item, outfile);
29 cbor_decref(&item);
31 item = cbor_new_ctrl();
32 cbor_set_ctrl(item, 1);
33 cbor_describe(item, outfile);
34 cbor_decref(&item);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
bar-chart.h 35 /* Add an item, taking a copy of NAME. */
42 struct item struct in class:ana::bar_chart
44 item (const char *name, value_t value) function in struct:ana::bar_chart::item
46 ~item () { free (m_name); }
55 auto_delete_vec<item> m_items;
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
bar-chart.h 35 /* Add an item, taking a copy of NAME. */
42 struct item struct in class:ana::bar_chart
44 item (const char *name, value_t value) function in struct:ana::bar_chart::item
46 ~item () { free (m_name); }
55 auto_delete_vec<item> m_items;
  /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
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
98 struct qentry *item; local
110 struct qentry *item; local
    [all...]
  /src/usr.bin/make/unit-tests/
directive-for.mk 311 # expect+1: newline-item=(a)
312 . info newline-item=(${var})
  /src/external/bsd/elftosb/dist/common/
ExcludesListMatcher.cpp 25 glob_list_item_t item; local
26 item.m_isInclude = isInclude;
27 item.m_glob = pattern;
30 m_patterns.push_back(item);
52 glob_list_item_t & item = *it; local
56 bool didItemMatch = globMatch(testValue.c_str(), item.m_glob.c_str());
58 if (item.m_isInclude)
  /src/external/bsd/openldap/dist/servers/slapd/back-wt/
key.c 129 WT_ITEM item; local
134 bv2ITEM(k, &item);
135 cursor->set_key(cursor, &item, id);
cache.c 38 WT_ITEM item; local
68 rc = cursor->get_value(cursor, &item);
75 if (item.size == 0) {
80 memcpy(ids, item.data, item.size);
97 WT_ITEM item; local
105 item.size = WT_IDL_SIZEOF(ids);
106 item.data = ids;
117 cursor->set_value(cursor, &item);
145 WT_ITEM item; local
    [all...]
dn2entry.c 43 WT_ITEM item; local
85 cursor->get_value(cursor, &id, &item);
86 rc = wt_entry_header( &item, &eh );
88 eoff = eh.data - (char *)item.data;
89 eh.bv.bv_len = eh.nvals * sizeof( struct berval ) + item.size;
93 memcpy(eh.data, item.data, item.size);
  /src/external/mit/libcbor/dist/oss-fuzz/
cbor_load_fuzzer.cc 25 cbor_item_t *item = cbor_load(Data, Size, &result); local
27 cbor_describe(item, kState.fout);
30 cbor_serialize_alloc(item, &buffer, &buffer_size);
32 cbor_item_t *copied = cbor_copy(item);
34 cbor_decref(&item);
  /src/external/mit/libcbor/dist/src/cbor/internal/
stack.h 20 cbor_item_t *item; member in struct:_cbor_stack_record
  /src/lib/libpam/modules/pam_echo/
pam_echo.c 59 int err, i, item; local
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/lib/libutil/
parsedate.y 132 | spec item
135 item: label
  /src/sys/arch/hpc/stand/hpcboot/menu/
tabwindow.cpp 157 TC_ITEM item; local
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/sys/arch/hpcmips/stand/pbsdboot/
layout.c 50 DLGITEMTEMPLATE item; local
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/external/bsd/openpam/dist/bin/su/
su.c 75 const void *item; local
130 pam_err = pam_get_item(pamh, PAM_USER, &item);
131 if (pam_err != PAM_SUCCESS || (pwd = getpwnam(user = item)) == NULL)
  /src/external/bsd/tmux/dist/
cmd-load-buffer.c 49 struct cmdq_item *item; member in struct:cmd_load_buffer_data
59 struct cmdq_item *item = cdata->item; local
69 cmdq_error(item, "%s: %s", strerror(error), path);
74 cmdq_error(item, "%s", cause);
84 cmdq_continue(item);
91 cmd_load_buffer_exec(struct cmd *self, struct cmdq_item *item)
94 struct client *tc = cmdq_get_target_client(item);
100 cdata->item = item;
    [all...]
cmd-save-buffer.c 62 struct cmdq_item *item = data; local
68 cmdq_error(item, "%s: %s", strerror(error), path);
69 cmdq_continue(item);
73 cmd_save_buffer_exec(struct cmd *self, struct cmdq_item *item)
76 struct client *c = cmdq_get_client(item);
86 cmdq_error(item, "no buffers");
92 cmdq_error(item, "no buffer %s", bufname);
104 cmdq_print_data(item, evb);
110 path = format_single_from_target(item, args_string(args, 0));
115 file_write(cmdq_get_client(item), path, flags, bufdata, bufsize
116 cmd_save_buffer_done, item); local
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>