Searched refs:ref_count (Results 1 - 15 of 15) sorted by relevance

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_refcount.c86 re->ref_count = (-adjust > re->ref_count)? 0 :
87 (adjust + re->ref_count > 65535)? 65535 :
88 re->ref_count + adjust;
89 return re->ref_count;
H A Dpcre_compile.c9387 re->ref_count = 0;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/rdma/
H A Dib_fmr_pool.h72 int ref_count; member in struct:ib_pool_fmr
/barrelfish-2018-10-04/usr/ramfsd/
H A Dwebserver_session.h63 long ref_count; member in struct:http_conn
/barrelfish-2018-10-04/usr/webserver/
H A Dwebserver_session.h58 long ref_count; member in struct:http_conn
H A Dhttp_server.c143 ++cs->ref_count;
144 return (cs->ref_count);
151 --cs->ref_count;
154 if (cs->ref_count <= 0) {
161 return cs->ref_count;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dfmr_pool.c59 * these cases it is a bug if the ref_count is not 0. In other words,
60 * if ref_count is > 0, then the list member must not be linked into
65 * count of the FMR. When a valid FMR is released, its ref_count is
66 * decremented, and if ref_count reaches 0, the FMR is placed in
70 * this case we just increment the ref_count and remove the FMR from
78 * All manipulation of ref_count, list and cache_node is protected by
152 if (fmr->ref_count !=0) {
154 fmr, fmr->ref_count);
321 fmr->ref_count = 0;
454 ++fmr->ref_count;
[all...]
/barrelfish-2018-10-04/include/vm/
H A Dvm_object.c170 KASSERT(object->ref_count == 0,
171 ("object %p ref_count = %d", object, object->ref_count));
209 object->ref_count = 0;
257 object->ref_count = 1;
453 object->ref_count++;
473 if (object->ref_count == 0) {
479 if (!umtx_shm_vnobj_persistent && object->ref_count == 1)
487 if (object->ref_count > 1 || (vp->v_vflag & VV_TEXT) == 0) {
488 object->ref_count
[all...]
H A Dvm_meter.c104 return (obj->ref_count > obj->shadow_count);
181 if (object->ref_count == 0) {
188 if (object->ref_count == 1 &&
H A Dvnode_pager.c148 object->ref_count--;
168 if (obj->ref_count == 0) {
251 KASSERT(object->ref_count == 1,
252 ("leaked ref %p %d", object, object->ref_count));
254 object->ref_count = 0;
262 object->ref_count++;
287 refs = object->ref_count;
H A Dvm_object.h109 int ref_count; /* How many refs?? */ member in struct:vm_object
H A Dvm_pageout.c1018 if (object->ref_count != 0) {
1025 if (object->ref_count != 0) {
1048 if (object->ref_count != 0) {
1238 if (m->object->ref_count != 0)
1382 obj->ref_count != 1)
H A Dvm_page.c2517 if (object->ref_count != 0)
3726 if (object->ref_count != 0 && m->valid == VM_PAGE_BITS_ALL &&
H A Dvm_fault.c840 (fs.object->ref_count == 1) &&
H A Dvm_map.c1263 if (object->ref_count > 1 || object->shadow_count != 0)
2932 if (object->ref_count != 1 &&

Completed in 108 milliseconds