Searched defs:attr (Results 1 - 2 of 2) sorted by relevance

/pkg/src/modules/
H A D_varcet.c42 PyObject *attr = NULL; local
81 while (PyDict_Next(act_attrs, &fpos, &attr, &value)) {
82 char *as = PyBytes_AS_STRING(attr);
86 PyObject *facet = PyDict_GetItem(facets, attr);
100 "match", "O", attr);
188 PyObject *attr = NULL; local
202 while (PyDict_Next(act_attrs, &pos, &attr, &value)) {
203 char *as = PyBytes_AS_STRING(attr);
205 PyObject *sysv = PyDict_GetItem(vars, attr);
/pkg/src/modules/actions/
H A D_actions.c56 add_to_attrs(PyObject *attrs, PyObject *key, PyObject *attr, bool concat) argument
63 return (PyDict_SetItem(attrs, key, attr));
82 /* decrefing "attr" is handled by caller */
84 str = PyUnicode_Concat(str, attr);
86 PyString_Concat(&str, attr);
93 return (PyList_Append(av, attr));
96 /* decrefing "attr" is handled by caller */
98 av = PyUnicode_Concat(av, attr);
100 PyString_Concat(&av, attr);
115 Py_INCREF(attr);
171 PyObject *attr = NULL; local
[all...]

Completed in 10 milliseconds