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.c935 struct bpf_object *tobj; in run_subtest() local
971 tobj = bpf_object__open_mem(obj_bytes, obj_byte_cnt, open_opts); in run_subtest()
972 if (!ASSERT_OK_PTR(tobj, "obj_open_mem")) /* shouldn't happen */ in run_subtest()
976 bpf_object__for_each_program(tprog_iter, tobj) { in run_subtest()
994 prepare_case(tester, spec, tobj, tprog); in run_subtest()
1001 bpf_object__for_each_map(map, tobj) in run_subtest()
1004 err = bpf_object__load(tobj); in run_subtest()
1053 bpf_object__for_each_map(map, tobj) { in run_subtest()
1071 err = tester->pre_execution_cb(tobj); in run_subtest()
1092 bpf_object__close(tobj); in run_subtest()
H A Dveristat.c1298 struct bpf_object *obj = NULL, *tobj; in process_obj() local
1351 tobj = bpf_object__open_file(filename, &opts); in process_obj()
1352 if (!tobj) { in process_obj()
1359 bpf_object__for_each_program(tprog, tobj) { in process_obj()
1370 process_prog(filename, tobj, lprog); in process_obj()
1371 bpf_object__close(tobj); in process_obj()
/linux/drivers/gpu/drm/qxl/
H A Dqxl_drv.h95 #define to_qxl_bo(tobj) container_of((tobj), struct qxl_bo, tbo) argument