Lines Matching refs:p
71 void *p = NULL; in handle_get() local
94 p = realloc(db->ptrs, new_max_ptrs * sizeof(void *)); in handle_get()
95 if (!p) { in handle_get()
99 db->ptrs = p; in handle_get()
115 void *p = NULL; in handle_put() local
123 p = NULL; in handle_put()
127 p = db->ptrs[handle]; in handle_put()
132 return p; in handle_put()
137 void *p = NULL; in handle_lookup() local
145 p = NULL; in handle_lookup()
149 p = db->ptrs[handle]; in handle_lookup()
153 return p; in handle_lookup()