HomeSort by relevance Sort by last modified time
    Searched full:vdict (Results 1 - 2 of 2) sorted by null

  /external/ppp/pppd/plugins/radius/
dict.c 48 VENDOR_DICT *vdict; local
89 vdict = (VENDOR_DICT *) malloc (sizeof (VENDOR_DICT));
90 if (!vdict) {
95 strcpy(vdict->vendorname, namestr);
96 vdict->vendorcode = value;
97 vdict->attributes = NULL;
98 vdict->next = vendor_dictionaries;
99 vendor_dictionaries = vdict;
171 vdict = rc_dict_findvendor(vendorstr);
172 if (!vdict) {
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
gml.py 164 vdict=wrap(v)
165 node=vdict['id']
166 G.add_node(node,attr_dict=vdict)
168 vdict=wrap(v)
169 source=vdict.pop('source')
170 target=vdict.pop('target')
173 G.add_edge(source,target,attr_dict=vdict)

Completed in 65 milliseconds