Lines Matching refs:obj_id
1843 int obj_id; member
1865 cache_entry->obj_id = 0; in alloc_init_cache_entry()
1921 find_id_in_cache(int obj_id, struct info_sleep_inheritor_test *info) in find_id_in_cache() argument
1926 if (obj_cache[i] != NULL && obj_cache[i]->obj_id == obj_id) { in find_id_in_cache()
1934 free_id_in_cache(int obj_id, struct info_sleep_inheritor_test *info, __assert_only struct obj_cache… in free_id_in_cache() argument
1939 if (obj_cache[i] != NULL && obj_cache[i]->obj_id == obj_id) { in free_id_in_cache()
1967 get_obj_cache(int obj_id, struct info_sleep_inheritor_test *info, char **buff) in get_obj_cache() argument
1976 if ((obj = find_id_in_cache(obj_id, info)) != NULL) { in get_obj_cache()
1994 …Thread %p observed OBJ_STATE_PLACEHOLDER %d for obj %d", current_thread(), obj->obj_state, obj_id); in get_obj_cache()
1996 …"Thread %p observed an unknown obj_state %d for obj %d", current_thread(), obj->obj_state, obj_id); in get_obj_cache()
2032 obj->obj_id = obj_id; in get_obj_cache()
2046 assert(obj->obj_id == obj_id); in get_obj_cache()
2066 snprintf(obj->obj_buff, OBJ_BUFF_SIZE, "I am %d", obj_id); in get_obj_cache()
2069 obj2 = find_id_in_cache(obj_id, info); in get_obj_cache()
2083 put_obj_cache(int obj_id, struct info_sleep_inheritor_test *info, bool free) in put_obj_cache() argument
2091 obj = find_id_in_cache(obj_id, info); in put_obj_cache()
2129 obj2 = find_id_in_cache(obj_id, info); in put_obj_cache()
2132 ret = free_id_in_cache(obj_id, info, obj); in put_obj_cache()