OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dict_attr
(Results
1 - 7
of
7
) sorted by null
/external/ppp/pppd/plugins/radius/
dict.c
22
static
DICT_ATTR
*dictionary_attributes = NULL;
46
DICT_ATTR
*attr;
183
(
DICT_ATTR
*) malloc (sizeof (
DICT_ATTR
)))
184
== (
DICT_ATTR
*) NULL)
295
DICT_ATTR
*rc_dict_getattr (int attribute, int vendor)
297
DICT_ATTR
*attr;
302
while (attr != (
DICT_ATTR
*) NULL) {
332
DICT_ATTR
*rc_dict_findattr (char *attrname)
334
DICT_ATTR
*attr
[
all
...]
radiusclient.h
298
typedef struct
dict_attr
struct
304
struct
dict_attr
*next;
305
}
DICT_ATTR
;
319
DICT_ATTR
*attributes;
426
DICT_ATTR
*rc_dict_getattr __P((int, int));
427
DICT_ATTR
*rc_dict_findattr __P((char *));
avpair.c
113
DICT_ATTR
*pda;
115
if ((pda = rc_dict_getattr (attrid, vendorcode)) == (
DICT_ATTR
*) NULL)
161
DICT_ATTR
*attr;
192
if ((attr = rc_dict_getattr (attribute, VENDOR_NONE)) == (
DICT_ATTR
*) NULL)
269
DICT_ATTR
*attr;
527
DICT_ATTR
*attr = NULL;
548
rc_dict_findattr (attrstr)) == (
DICT_ATTR
*) NULL)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_functools.py
240
f.
dict_attr
= dict(a=1, b=2, c=3)
243
wrapper.
dict_attr
= {}
245
update = ('
dict_attr
',)
251
self.assertEqual(wrapper.
dict_attr
, f.
dict_attr
)
303
f.
dict_attr
= dict(a=1, b=2, c=3)
305
f.
dict_attr
= {}
308
update = ('
dict_attr
',)
317
self.assertEqual(wrapper.
dict_attr
, f.
dict_attr
)
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_functools.py
240
f.
dict_attr
= dict(a=1, b=2, c=3)
243
wrapper.
dict_attr
= {}
245
update = ('
dict_attr
',)
251
self.assertEqual(wrapper.
dict_attr
, f.
dict_attr
)
303
f.
dict_attr
= dict(a=1, b=2, c=3)
305
f.
dict_attr
= {}
308
update = ('
dict_attr
',)
317
self.assertEqual(wrapper.
dict_attr
, f.
dict_attr
)
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py
105
for
dict_attr
in ("symbol2number", "number2symbol", "dfas", "keywords",
107
setattr(new,
dict_attr
, getattr(self,
dict_attr
).copy())
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py
105
for
dict_attr
in ("symbol2number", "number2symbol", "dfas", "keywords",
107
setattr(new,
dict_attr
, getattr(self,
dict_attr
).copy())
Completed in 156 milliseconds