Lines Matching defs:object
38 printf(" -F <file> File to pin/get object\n");
39 printf(" -P |- pin object\n");
40 printf(" -G `- get object\n");
45 printf(" -o <object> `- object file\n");
55 static int bpf_prog_create(const char *object)
65 if (object) {
66 assert(!bpf_prog_load(object, BPF_PROG_TYPE_UNSPEC,
110 static int bpf_do_prog(const char *file, uint32_t flags, const char *object)
115 fd = bpf_prog_create(object);
141 const char *file = NULL, *object = NULL;
174 object = optarg;
188 return bpf_do_prog(file, flags, object);