Home
last modified time | relevance | path

Searched refs:attrid (Results 1 – 3 of 3) sorted by relevance

/external/ppp/pppd/plugins/radius/
Davpair.c34 VALUE_PAIR *rc_avpair_add (VALUE_PAIR **list, int attrid, void *pval, int len, in rc_avpair_add() argument
39 vp = rc_avpair_new (attrid, pval, len, vendorcode); in rc_avpair_add()
110 VALUE_PAIR *rc_avpair_new (int attrid, void *pval, int len, int vendorcode) in rc_avpair_new() argument
115 if ((pda = rc_dict_getattr (attrid, vendorcode)) == (DICT_ATTR *) NULL) in rc_avpair_new()
117 error("rc_avpair_new: unknown attribute %d", attrid); in rc_avpair_new()
125 vp->attribute = attrid; in rc_avpair_new()
/external/libnl/lib/route/cls/
Dematch.c648 int rtnl_ematch_fill_attr(struct nl_msg *msg, int attrid, in rtnl_ematch_fill_attr() argument
663 if (!(topattr = nla_nest_start(msg, attrid))) in rtnl_ematch_fill_attr()
/external/python/cpython3/Objects/
Dtypeobject.c92 lookup_maybe_method(PyObject *self, _Py_Identifier *attrid, int *unbound);
1442 _PyObject_LookupSpecial(PyObject *self, _Py_Identifier *attrid) in _PyObject_LookupSpecial() argument
1446 res = _PyType_LookupId(Py_TYPE(self), attrid); in _PyObject_LookupSpecial()
1458 lookup_maybe_method(PyObject *self, _Py_Identifier *attrid, int *unbound) in lookup_maybe_method() argument
1460 PyObject *res = _PyType_LookupId(Py_TYPE(self), attrid); in lookup_maybe_method()
1484 lookup_method(PyObject *self, _Py_Identifier *attrid, int *unbound) in lookup_method() argument
1486 PyObject *res = lookup_maybe_method(self, attrid, unbound); in lookup_method()
1488 PyErr_SetObject(PyExc_AttributeError, _PyUnicode_FromId(attrid)); in lookup_method()