Home
last modified time | relevance | path

Searched refs:attrstr (Results 1 – 6 of 6) sorted by relevance

/external/ppp/pppd/plugins/radius/
Ddict.c42 char attrstr[AUTH_ID_LEN]; in rc_read_dictionary() local
211 if (sscanf (buffer, "%s%s%s%s", dummystr, attrstr, in rc_read_dictionary()
223 if (strlen (attrstr) > NAME_LENGTH) in rc_read_dictionary()
257 strcpy (dval->attrname, attrstr); in rc_read_dictionary()
Davpair.c525 char attrstr[AUTH_ID_LEN]; in rc_avpair_parse() local
546 rc_fieldcpy (attrstr, &buffer); in rc_avpair_parse()
548 rc_dict_findattr (attrstr)) == (DICT_ATTR *) NULL) in rc_avpair_parse()
/external/toybox/toys/other/
Dlsattr.c137 static char *attrstr(unsigned attrs, int full) in attrstr() function
190 } else xprintf("%s %s\n", attrstr(flag, 1), path); in print_file_attr()
332 perror_msg("%s: setting flags to =%s failed", fpath, attrstr(new, 0)); in update_attr()
/external/python/pycparser/pycparser/
Dc_ast.py89 attrstr = ', '.join('%s=%s' % nv for nv in nvlist)
92 attrstr = ', '.join('%s' % v for v in vlist)
93 buf.write(attrstr)
/external/python/cpython3/Modules/
D_operator.c1382 PyObject *attrstr = dotjoinattr(attr, &attrsep); in attrgetter_args() local
1383 if (attrstr == NULL) { in attrgetter_args()
1388 PyTuple_SET_ITEM(attrstrings, i, attrstr); in attrgetter_args()
/external/python/cpython2/Objects/
Dtypeobject.c1215 lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_maybe() argument
1220 *attrobj = PyString_InternFromString(attrstr); in lookup_maybe()
1236 lookup_method(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_method() argument
1238 PyObject *res = lookup_maybe(self, attrstr, attrobj); in lookup_method()
1245 _PyObject_LookupSpecial(PyObject *self, char *attrstr, PyObject **attrobj) in _PyObject_LookupSpecial() argument
1248 return lookup_maybe(self, attrstr, attrobj); in _PyObject_LookupSpecial()