Home
last modified time | relevance | path

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

/external/libnl/src/
Dnl-list-caches.c47 struct nl_object_ops *obj_ops = ops->co_obj_ops; in print() local
64 obj_ops->oo_name, obj_ops->oo_size, in print()
65 obj_ops->oo_constructor ? "yes" : "no", in print()
66 obj_ops->oo_free_data ? "yes" : "no", in print()
67 obj_ops->oo_clone ? "yes" : "no", in print()
68 obj_ops->oo_compare ? "yes" : "no", in print()
69 id_attr_list(obj_ops, buf, sizeof(buf))); in print()
72 if (obj_ops->oo_dump[i]) in print()
/external/libnl/lib/
Dobject.c37 static inline struct nl_object_ops *obj_ops(struct nl_object *obj) in obj_ops() function
121 ops = obj_ops(obj); in nl_object_clone()
157 struct nl_object_ops *ops = obj_ops(dst); in nl_object_update()
178 ops = obj_ops(obj); in nl_object_free()
316 struct nl_object_ops *ops = obj_ops(a); in nl_object_identical()
320 if (ops != obj_ops(b)) in nl_object_identical()
364 struct nl_object_ops *ops = obj_ops(a); in nl_object_diff64()
366 if (ops != obj_ops(b) || ops->oo_compare == NULL) in nl_object_diff64()
408 struct nl_object_ops *ops = obj_ops(obj); in nl_object_match_filter()
410 if (ops != obj_ops(filter) || ops->oo_compare == NULL) in nl_object_match_filter()
[all …]
Dcache_mngt.c202 static struct nl_cache_ops *cache_ops_lookup_for_obj(struct nl_object_ops *obj_ops) in cache_ops_lookup_for_obj() argument
207 if (ops->co_obj_ops == obj_ops) in cache_ops_lookup_for_obj()