Searched refs:ref (Results 1 - 16 of 16) sorted by path

/system/bt/stack/btm/
H A Dbtm_ble_adv_filter.c113 tBTM_BLE_REF_VALUE ref, tBTM_BLE_PF_CFG_CBACK *p_cmpl_cback,
117 btm_ble_adv_filt_cb.op_q.ref_value[btm_ble_adv_filt_cb.op_q.next_idx] = ref;
112 btm_ble_advfilt_enq_op_q(UINT8 action, UINT8 ocf, tBTM_BLE_FILT_CB_EVT cb_evt, tBTM_BLE_REF_VALUE ref, tBTM_BLE_PF_CFG_CBACK *p_cmpl_cback, tBTM_BLE_PF_PARAM_CBACK *p_filt_param_cback) argument
/system/connectivity/shill/wifi/
H A Dwifi_provider_unittest.cc446 MATCHER_P(RefPtrMatch, ref, "") {
447 return ref.get() == arg.get();
/system/core/include/utils/
H A DRefBase.h77 //! DEBUGGING ONLY: Get current strong ref count.
96 //! DEBUGGING ONLY: Get current weak ref count.
162 static void renameRefId(weakref_type* ref,
165 static void renameRefId(RefBase* ref,
187 //! DEBUGGING ONLY: Get current strong ref count.
200 inline static void renameRefId(T* ref, argument
/system/core/libmemunreachable/
H A DLeakFolding.cpp49 for (auto& ref: leak.node.references_out) {
50 if (leak.scc != ref->ptr->scc) {
51 leak.scc->node.Edge(&ref->ptr->scc->node);
64 scc->node.Foreach([&](SCCInfo* ref) {
65 walk(ref);
H A DTarjan.h39 void Edge(Node<T>* ref) { argument
40 references_out.emplace(ref);
41 ref->references_in.emplace(this);
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp702 int ref = scratches.obtain(); local
704 CONTEXT_LOAD(ref, state.alpha_test.ref);
705 if (shift) CMP(AL, fragment.reg, reg_imm(ref, LSR, shift));
706 else CMP(AL, fragment.reg, ref);
/system/core/libpixelflinger/include/pixelflinger/
H A Dpixelflinger.h286 void (*alphaFuncx)(void* c, GGLenum func, GGLclampx ref);
/system/core/libpixelflinger/include/private/pixelflinger/
H A Dggl_context.h317 GGLcolor ref; member in struct:android::alpha_test_state_t
/system/core/libpixelflinger/
H A Dpixelflinger.cpp549 static void ggl_alphaFuncx(void* con, GGLenum func, GGLclampx ref) argument
556 c->state.alpha_test.ref = gglFixedToIteratedColor(gglClampx(ref));
H A Dscanline.cpp864 GGLcolor ref = c->state.alpha_test.ref; local
869 case GGL_LESS: if (alpha<ref) break; goto discard;
870 case GGL_EQUAL: if (alpha==ref) break; goto discard;
871 case GGL_LEQUAL: if (alpha<=ref) break; goto discard;
872 case GGL_GREATER: if (alpha>ref) break; goto discard;
873 case GGL_NOTEQUAL: if (alpha!=ref) break; goto discard;
874 case GGL_GEQUAL: if (alpha>=ref) break; goto discard;
/system/core/libutils/
H A DRefBase.cpp41 // whether ref-tracking is enabled by default, if not, trackMe(true, false)
174 char inc = refs->ref >= 0 ? '+' : '-';
175 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
188 char inc = refs->ref >= 0 ? '+' : '-';
189 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
284 int32_t ref; member in struct:android::RefBase::weakref_impl::ref_entry
292 ref_entry* ref = new ref_entry; local
296 ref
312 ref_entry* ref = head; local
342 ref_entry* ref = r; local
724 renameRefId(weakref_type* ref, const void* old_id, const void* new_id) argument
731 renameRefId(RefBase* ref, const void* old_id, const void* new_id) argument
[all...]
/system/extras/ksmutils/
H A Dlookup3.c874 uint32_t ref,x,y; local
939 ref = hashlittle(b, len, (uint32_t)1);
944 if ((ref != x) || (ref != y))
946 printf("alignment error: %.8x %.8x %.8x %d %d\n",ref,x,y,
/system/netd/server/
H A DMDnsSdListener.cpp73 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); local
74 if (ref == NULL) {
80 if (VDBG) ALOGD("using ref %p", ref);
84 DNSServiceErrorType result = DNSServiceBrowse(ref, nativeFlags, interfaceInt, regType,
142 DNSServiceRef *ref = mMonitor->lookupServiceRef(requestId); local
143 if (ref == NULL) {
148 if (VDBG) ALOGD("Stopping %s with ref %p", str, ref);
149 DNSServiceRefDeallocate(*ref);
165 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); local
221 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); local
287 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); local
347 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); local
[all...]
/system/sepolicy/
H A Dfile_contexts308 /data/misc/profiles/ref(/.*)? u:object_r:user_profile_data_file:s0
/system/update_engine/update_manager/
H A Dgeneric_variables.h53 // Creates the variable returning copies of the passed |ref|. The reference to
58 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p, argument
60 : Variable<T>(name, kVariableModePoll), ref_(ref), is_set_p_(is_set_p),
62 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p) argument
63 : PollCopyVariable(name, ref, is_set_p, std::string()) {}
64 PollCopyVariable(const std::string& name, const T& ref) argument
65 : PollCopyVariable(name, ref, nullptr) {}
68 const T& ref, const bool* is_set_p,
70 : Variable<T>(name, poll_interval), ref_(ref), is_set_p_(is_set_p),
73 const T& ref, cons
67 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, const T& ref, const bool* is_set_p, const std::string& errmsg) argument
72 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, const T& ref, const bool* is_set_p) argument
75 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, const T& ref) argument
[all...]
/system/vold/
H A DExt4Crypt.cpp162 auto ref = keyname(*raw_ref); local
166 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
171 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring

Completed in 663 milliseconds