HomeSort by: relevance | last modified time | path
    Searched refs:attr_name (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/external/ibm-public/postfix/dist/src/global/
rec_attr_map.c 11 /* int rec_attr_map(attr_name)
12 /* const char *attr_name;
41 int rec_attr_map(const char *attr_name)
43 if (strcmp(attr_name, MAIL_ATTR_DSN_ORCPT) == 0) {
45 } else if (strcmp(attr_name, MAIL_ATTR_DSN_NOTIFY) == 0) {
47 } else if (strcmp(attr_name, MAIL_ATTR_DSN_ENVID) == 0) {
49 } else if (strcmp(attr_name, MAIL_ATTR_DSN_RET) == 0) {
51 } else if (strcmp(attr_name, MAIL_ATTR_CREATE_TIME) == 0) {
map_search.c 124 char *attr_name = 0; local
194 if ((const_err = split_nameval(attr_name_val, &attr_name,
200 if (strcasecmp(attr_name, MAP_SEARCH_ATTR_NAME_SEARCH) != 0) {
202 map_spec, attr_name);
211 if (attr_name != 0) {
  /src/external/gpl3/gcc.old/dist/gcc/
attribs.h 80 /* Remove any instances of attribute ATTR_NAME in LIST and return the
110 of ATTR_NAME, and LIST is not NULL_TREE.
114 extern tree private_lookup_attribute (const char *attr_name, size_t attr_len,
144 canonicalize_attr_name (tree attr_name)
146 size_t l = IDENTIFIER_LENGTH (attr_name);
147 const char *s = IDENTIFIER_POINTER (attr_name);
152 return attr_name;
173 /* Given an identifier node IDENT and a string ATTR_NAME, return true
177 is_attribute_p (const char *attr_name, const_tree ident)
179 return cmp_attribs (attr_name, strlen (attr_name)
    [all...]
attribs.cc 1015 tree attr_name; local
1020 attr_name = get_identifier (name);
1023 attr = tree_cons (attr_name, attr_args, chain);
1604 /* Remove any instances of attribute ATTR_NAME in LIST and return the
1608 remove_attribute (const char *attr_name, tree list)
1611 gcc_checking_assert (attr_name[0] != '_');
1618 if (is_attribute_p (attr_name, attr))
2003 of ATTR_NAME, and LIST is not NULL_TREE.
2009 private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
2015 if (cmp_attribs (attr_name, attr_len, IDENTIFIER_POINTER (attr)
2625 const char *attr_name = attribute_tables[ti0][s0].name; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
attr_print0.c 116 char *attr_name; local
140 attr_name = va_arg(ap, char *);
141 vstream_fwrite(fp, attr_name, strlen(attr_name) + 1);
146 msg_info("send attr %s = %u", attr_name, int_val);
149 attr_name = va_arg(ap, char *);
150 vstream_fwrite(fp, attr_name, strlen(attr_name) + 1);
155 msg_info("send attr %s = %lu", attr_name, long_val);
158 attr_name = va_arg(ap, char *)
    [all...]
attr_print_plain.c 117 char *attr_name; local
141 attr_name = va_arg(ap, char *);
143 vstream_fprintf(fp, "%s=%u\n", attr_name, (unsigned) int_val);
145 msg_info("send attr %s = %u", attr_name, (unsigned) int_val);
148 attr_name = va_arg(ap, char *);
150 vstream_fprintf(fp, "%s=%lu\n", attr_name, long_val);
152 msg_info("send attr %s = %lu", attr_name, long_val);
155 attr_name = va_arg(ap, char *);
157 vstream_fprintf(fp, "%s=%s\n", attr_name, str_val);
159 msg_info("send attr %s = %s", attr_name, str_val)
    [all...]
attr_print64.c 151 char *attr_name; local
174 attr_name = va_arg(ap, char *);
175 attr_print64_str(fp, attr_name, strlen(attr_name));
181 msg_info("send attr %s = %u", attr_name, int_val);
184 attr_name = va_arg(ap, char *);
185 attr_print64_str(fp, attr_name, strlen(attr_name));
191 msg_info("send attr %s = %lu", attr_name, long_val);
194 attr_name = va_arg(ap, char *)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
attribs.h 87 /* Remove any instances of attribute ATTR_NAME in LIST and return the
121 of ATTR_NAME, and LIST is not NULL_TREE.
125 extern tree private_lookup_attribute (const char *attr_name, size_t attr_len,
128 const char *attr_name,
159 canonicalize_attr_name (tree attr_name)
161 size_t l = IDENTIFIER_LENGTH (attr_name);
162 const char *s = IDENTIFIER_POINTER (attr_name);
167 return attr_name;
188 /* Given an identifier node IDENT and a string ATTR_NAME, return true
192 is_attribute_p (const char *attr_name, const_tree ident
    [all...]
attribs.cc 1077 tree attr_name; local
1082 attr_name = get_identifier (name);
1085 attr = tree_cons (attr_name, attr_args, chain);
1676 /* Remove any instances of attribute ATTR_NAME in LIST and return the
1680 remove_attribute (const char *attr_name, tree list)
1683 gcc_checking_assert (attr_name[0] != '_');
1690 if (is_attribute_p (attr_name, attr))
1703 remove_attribute (const char *attr_ns, const char *attr_name, tree list)
1706 gcc_checking_assert (attr_name[0] != '_');
1714 if (is_attribute_p (attr_name, attr
2723 const char *attr_name = attribute.name; local
    [all...]
  /src/external/bsd/libevent/dist/m4/
acx_pthread.m4 230 attr_name=unknown
233 [attr_name=$attr; break])
235 AC_MSG_RESULT($attr_name)
236 if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then
237 AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name,
  /src/external/bsd/ntp/dist/sntp/libevent/m4/
acx_pthread.m4 230 attr_name=unknown
233 [attr_name=$attr; break])
235 AC_MSG_RESULT($attr_name)
236 if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then
237 AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name,
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-lex.cc 309 tree attr_name = NULL_TREE;
322 attr_name = get_identifier ((const char *)
324 attr_name = canonicalize_attr_name (attr_name);
357 tree attr_ns = attr_name;
372 attr_name = NULL_TREE;
374 attr_name = build_tree_list (attr_ns, attr_id);
380 attr_name = NULL_TREE;
387 attr_name = NULL_TREE;
397 if (is_attribute_p ("noreturn", attr_name))
308 tree attr_name = NULL_TREE; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/postdrop/
postdrop.c 332 char *attr_name; local
530 if ((error_text = split_nameval(vstring_str(buf), &attr_name,
538 if ((STREQ(attr_name, MAIL_ATTR_ENCODING)
542 || STREQ(attr_name, MAIL_ATTR_DSN_ENVID)
543 || STREQ(attr_name, MAIL_ATTR_DSN_NOTIFY)
544 || rec_attr_map(attr_name)
545 || (STREQ(attr_name, MAIL_ATTR_RWR_CONTEXT)
548 || STREQ(attr_name, MAIL_ATTR_TRACE_FLAGS)) { /* XXX */
550 attr_name, attr_value);
553 (long) uid, attr_name, attr_value)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-lex.cc 339 tree attr_name = NULL_TREE;
352 attr_name = get_identifier ((const char *)
354 attr_name = canonicalize_attr_name (attr_name);
388 tree attr_ns = attr_name;
401 attr_name = NULL_TREE;
403 attr_name = build_tree_list (attr_ns, attr_id);
409 attr_name = NULL_TREE;
417 if (is_attribute_p ("noreturn", attr_name))
419 else if (is_attribute_p ("deprecated", attr_name))
338 tree attr_name = NULL_TREE; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup_envelope.c 125 char *attr_name; local
186 error_text = split_nameval(STR(state->attr_buf), &attr_name, &attr_value);
196 state->queue_id, attr_name);
199 if ((junk = rec_attr_map(attr_name)) != 0) {
477 if (strcmp(attr_name, MAIL_ATTR_RWR_CONTEXT) == 0) {
491 if (strcmp(attr_name, MAIL_ATTR_TRACE_FLAGS) == 0) {
501 nvtable_update(state->attr, attr_name, attr_value);
cleanup_bounce.c 98 char *attr_name; local
154 if (split_nameval(STR(buf), &attr_name, &attr_value) != 0
158 if ((junk = rec_attr_map(attr_name)) != 0) {
cleanup_extracted.c 108 char *attr_name; local
160 error_text = split_nameval(STR(state->attr_buf), &attr_name, &attr_value);
170 state->queue_id, attr_name);
173 if ((junk = rec_attr_map(attr_name)) != 0) {
  /src/external/gpl3/gdb/dist/gdb/python/
py-param.c 176 get_attr (PyObject *obj, PyObject *attr_name)
178 if (PyUnicode_Check (attr_name)
179 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
186 return PyObject_GenericGetAttr (obj, attr_name);
393 set_attr (PyObject *obj, PyObject *attr_name, PyObject *val)
395 if (PyUnicode_Check (attr_name)
396 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
407 return PyObject_GenericSetAttr (obj, attr_name, val);
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-param.c 176 get_attr (PyObject *obj, PyObject *attr_name)
178 if (PyUnicode_Check (attr_name)
179 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
186 return PyObject_GenericGetAttr (obj, attr_name);
393 set_attr (PyObject *obj, PyObject *attr_name, PyObject *val)
395 if (PyUnicode_Check (attr_name)
396 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
407 return PyObject_GenericSetAttr (obj, attr_name, val);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
call-details.h 74 tree lookup_function_attribute (const char *attr_name) const;
  /src/external/ibm-public/postfix/dist/src/pickup/
pickup.c 237 char *attr_name; local
294 &attr_name, &attr_value) == 0
295 && rec_attr_map(attr_name) == 0);
  /src/sys/fs/ntfs/
ntfs_subr.h 63 struct attr_name *name;
  /src/external/ibm-public/postfix/dist/src/postcat/
postcat.c 184 char *attr_name; local
420 error_text = split_nameval(STR(buffer), &attr_name, &attr_value);
426 if (strcmp(attr_name, MAIL_ATTR_CREATE_TIME) == 0) {
432 attr_name, attr_value);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_topology.h 180 struct attribute attr_name; member in struct:kfd_topology_device
  /src/external/bsd/atf/dist/tools/
parser.cpp 265 std::string attr_name = t.text(); local
271 attrs[attr_name] = attr_value;

Completed in 45 milliseconds

1 2 3