Searched refs:robj (Results 1 - 6 of 6) sorted by relevance
/third_party/libwebsockets/lib/roles/netlink/ |
H A D | ops-netlink.c | 72 lws_route_t robj, *rou, *rmat; in rops_handle_POLLIN_netlink() local 121 memset(&robj, 0, sizeof(robj)); in rops_handle_POLLIN_netlink() 122 robj.if_idx = -1; in rops_handle_POLLIN_netlink() 123 robj.priority = -1; in rops_handle_POLLIN_netlink() 181 robj.source_ads = 1; in rops_handle_POLLIN_netlink() 182 robj.dest_len = ifam->ifa_prefixlen; in rops_handle_POLLIN_netlink() 183 robj.if_idx = (int)ifam->ifa_index; in rops_handle_POLLIN_netlink() 184 robj.scope = ifam->ifa_scope; in rops_handle_POLLIN_netlink() 185 robj in rops_handle_POLLIN_netlink() [all...] |
/third_party/libwebsockets/lib/core-net/ |
H A D | route.c | 142 _lws_route_remove(struct lws_context_per_thread *pt, lws_route_t *robj, int flags) in _lws_route_remove() argument 148 if ((!(flags & LRR_MATCH_SRC) || !lws_sa46_compare_ads(&robj->src, &rou->src)) && in _lws_route_remove() 149 (!(flags & LRR_MATCH_DST) || !lws_sa46_compare_ads(&robj->dest, &rou->dest)) && in _lws_route_remove() 150 (!robj->gateway.sa4.sin_family || in _lws_route_remove() 151 !lws_sa46_compare_ads(&robj->gateway, &rou->gateway)) && in _lws_route_remove() 152 robj->dest_len <= rou->dest_len && in _lws_route_remove() 153 robj->if_idx == rou->if_idx && in _lws_route_remove() 155 robj->priority == rou->priority) in _lws_route_remove() 158 _lws_route_pt_close_route_users(pt, robj->uidx); in _lws_route_remove()
|
H A D | private-lib-core-net.h | 1381 _lws_route_remove(struct lws_context_per_thread *pt, lws_route_t *robj, int flags);
|
/third_party/python/Modules/clinic/ |
H A D | itertoolsmodule.c.h | 469 PyObject *robj); 482 PyObject *robj = Py_None; in itertools_permutations() local 492 robj = fastargs[1]; in itertools_permutations() 494 return_value = itertools_permutations_impl(type, iterable, robj); in itertools_permutations()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_python_wrap.c | 2622 PyObject * robj; in SWIG_Python_NewPointerObj() local 2662 robj = SwigPyObject_New(ptr, type, own); in SWIG_Python_NewPointerObj() 2663 if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { in SWIG_Python_NewPointerObj() 2664 PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); in SWIG_Python_NewPointerObj() 2665 Py_DECREF(robj); in SWIG_Python_NewPointerObj() 2666 robj = inst; in SWIG_Python_NewPointerObj() 2668 return robj; in SWIG_Python_NewPointerObj()
|
/third_party/python/Modules/ |
H A D | itertoolsmodule.c | 3253 r as robj: object = None 3261 PyObject *robj) in itertools_permutations_impl() 3278 if (robj != Py_None) { in itertools_permutations_impl() 3279 if (!PyLong_Check(robj)) { in itertools_permutations_impl() 3283 r = PyLong_AsSsize_t(robj); in itertools_permutations_impl() 3260 itertools_permutations_impl(PyTypeObject *type, PyObject *iterable, PyObject *robj) itertools_permutations_impl() argument
|
Completed in 19 milliseconds