Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/bpf/
H A Dtest_loader.c1145 struct bpf_object *tobj; in process_subtest()
1186 tobj = bpf_object__open_mem(obj_bytes, obj_byte_cnt, open_opts);
1187 if (!ASSERT_OK_PTR(tobj, "obj_open_mem")) /* shouldn't happen */
1191 bpf_object__for_each_program(tprog_iter, tobj) {
1209 prepare_case(tester, spec, tobj, tprog);
1216 bpf_object__for_each_map(map, tobj)
1219 err = bpf_object__load(tobj);
1270 bpf_object__for_each_map(map, tobj) {
1288 err = tester->pre_execution_cb(tobj);
1335 bpf_object__close(tobj);
950 struct bpf_object *tobj; run_subtest() local
[all...]
H A Dveristat.c2185 struct bpf_object *obj = NULL, *tobj; in process_obj()
2243 tobj = bpf_object__open_file(filename, &opts); in cmp_stat()
2244 if (!tobj) { in cmp_stat()
2250 err = set_global_vars(tobj, env.presets, env.npresets); in cmp_stat()
2257 bpf_object__for_each_program(tprog, tobj) { in cmp_stat()
2268 process_prog(filename, tobj, lprog);
2269 bpf_object__close(tobj); in cmp_prog_stats()
2131 struct bpf_object *obj = NULL, *tobj; process_obj() local
/linux/drivers/gpu/drm/qxl/
H A Dqxl_drv.h95 #define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo) argument