Home
last modified time | relevance | path

Searched refs:IS_ERR (Results 1 – 11 of 11) sorted by relevance

/third_party/libbpf/include/linux/
Derr.h23 static inline bool IS_ERR(const void *ptr) in IS_ERR() function
35 return IS_ERR(ptr) ? PTR_ERR(ptr) : 0; in PTR_ERR_OR_ZERO()
/third_party/libbpf/src/
Dstrset.c49 if (IS_ERR(hash)) in strset__new()
Dlibbpf_internal.h516 if (IS_ERR(ret)) in libbpf_ptr()
519 return IS_ERR(ret) ? NULL : ret; in libbpf_ptr()
Dskel_internal.h156 if (IS_ERR(map)) in skel_finalize_map_data()
Dbtf.c1568 if (IS_ERR(set)) {
1796 if (IS_ERR(p.str_off_map))
3161 if (IS_ERR(d)) {
3344 if (IS_ERR(d->dedup_table)) {
3460 if (IS_ERR(d->strs_set)) {
4747 if (IS_ERR(names_map))
Dbtf_dump.c172 if (IS_ERR(d->type_names)) { in btf_dump__new()
178 if (IS_ERR(d->ident_names)) { in btf_dump__new()
Dlibbpf.c1260 if (IS_ERR(map)) in bpf_object__init_struct_ops_maps()
1718 if (IS_ERR(map))
2649 if (IS_ERR(map))
3086 if (IS_ERR(sym)) {
6026 if (IS_ERR(cands)) {
6072 if (IS_ERR(cand_cache)) {
7607 if (IS_ERR(obj))
9919 if (IS_ERR(ptr))
11462 if (IS_ERR(obj->usdt_man))
11466 if (IS_ERR(obj->usdt_man))
[all …]
Dusdt.c993 if (IS_ERR(specs_hash)) { in usdt_manager_attach_usdt()
Drelo_core.c39 if (IS_ERR(t)) in btf__resolve_size()
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/
Dvc4_gem.c102 if (IS_ERR(exec->exec_bo)) { in vc4_get_bcl()
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dkernel.h77 #define IS_ERR(err) ((unsigned long)(err) > (unsigned long)-1000L) macro