Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 14 of 14) sorted by relevance

/system/core/libutils/
DRefBase.cpp113 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
114 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
127 char inc = refs->ref >= 0 ? '+' : '-'; in ~weakref_impl()
128 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); in ~weakref_impl()
223 int32_t ref; member
231 ref_entry* ref = new ref_entry; in addRef() local
235 ref->ref = mRef; in addRef()
236 ref->id = id; in addRef()
238 ref->stack.update(2); in addRef()
240 ref->next = *refs; in addRef()
[all …]
/system/netd/server/
DMDnsSdListener.cpp70 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); in discover() local
71 if (ref == NULL) { in discover()
77 if (VDBG) ALOGD("using ref %p", ref); in discover()
81 DNSServiceErrorType result = DNSServiceBrowse(ref, nativeFlags, interfaceInt, regType, in discover()
139 DNSServiceRef *ref = mMonitor->lookupServiceRef(requestId); in stop() local
140 if (ref == NULL) { in stop()
145 if (VDBG) ALOGD("Stopping %s with ref %p", str, ref); in stop()
146 DNSServiceRefDeallocate(*ref); in stop()
162 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); in serviceRegister() local
164 if (ref == NULL) { in serviceRegister()
[all …]
/system/vold/
DExt4Crypt.cpp217 if (!UnencryptedProperties(path).Remove(properties::ref)) { in e4crypt_enable()
352 auto ref = std::string("ext4:") + o.str(); in e4crypt_check_passwd() local
361 key_serial_t key_id = add_key("logon", ref.c_str(), in e4crypt_check_passwd()
372 key_id, ref.c_str(), device_keyring, getpid()); in e4crypt_check_passwd()
375 if (!props.Set(properties::ref, raw_ref)) { in e4crypt_check_passwd()
/system/extras/ext4_utils/
Dunencrypted_properties.h7 extern const char* ref;
Dunencrypted_properties.cpp8 const char* ref = "ref"; variable
Dext4_crypt_init_extensions.cpp147 std::string policy = props.Get<std::string>(properties::ref); in e4crypt_set_directory_policy()
/system/extras/ksmutils/
Dlookup3.c874 uint32_t ref,x,y; in driver3() local
939 ref = hashlittle(b, len, (uint32_t)1); in driver3()
944 if ((ref != x) || (ref != y)) in driver3()
946 printf("alignment error: %.8x %.8x %.8x %d %d\n",ref,x,y, in driver3()
/system/core/include/utils/
DRefBase.h162 static void renameRefId(weakref_type* ref,
165 static void renameRefId(RefBase* ref,
199 inline static void renameRefId(T* ref, in renameRefId() argument
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.cpp702 int ref = scratches.obtain(); in build_alpha_test() local
704 CONTEXT_LOAD(ref, state.alpha_test.ref); in build_alpha_test()
705 if (shift) CMP(AL, fragment.reg, reg_imm(ref, LSR, shift)); in build_alpha_test()
706 else CMP(AL, fragment.reg, ref); in build_alpha_test()
/system/core/libpixelflinger/include/pixelflinger/
Dpixelflinger.h286 void (*alphaFuncx)(void* c, GGLenum func, GGLclampx ref);
/system/core/libpixelflinger/
Dpixelflinger.cpp549 static void ggl_alphaFuncx(void* con, GGLenum func, GGLclampx ref) in ggl_alphaFuncx() argument
556 c->state.alpha_test.ref = gglFixedToIteratedColor(gglClampx(ref)); in ggl_alphaFuncx()
Dscanline.cpp857 GGLcolor ref = c->state.alpha_test.ref; in scanline() local
862 case GGL_LESS: if (alpha<ref) break; goto discard; in scanline()
863 case GGL_EQUAL: if (alpha==ref) break; goto discard; in scanline()
864 case GGL_LEQUAL: if (alpha<=ref) break; goto discard; in scanline()
865 case GGL_GREATER: if (alpha>ref) break; goto discard; in scanline()
866 case GGL_NOTEQUAL: if (alpha!=ref) break; goto discard; in scanline()
867 case GGL_GEQUAL: if (alpha>=ref) break; goto discard; in scanline()
/system/bt/stack/btm/
Dbtm_ble_adv_filter.c113 tBTM_BLE_REF_VALUE ref, tBTM_BLE_PF_CFG_CBACK *p_cmpl_cback, in btm_ble_advfilt_enq_op_q() argument
117 btm_ble_adv_filt_cb.op_q.ref_value[btm_ble_adv_filt_cb.op_q.next_idx] = ref; in btm_ble_advfilt_enq_op_q()
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_context.h317 GGLcolor ref;