Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 43) sorted by relevance

12

/system/media/
DCleanSpec.mk48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterfw_intermediates)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_imageproc_inte…
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_text_intermedi…
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_ui_intermediat…
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_videosrc_inter…
53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libaudioutils_intermediates)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterfw_intermediates)
/system/netd/libnetdutils/include/netdutils/
DThreadUtil.h50 inline void* runAndDelete(void* obj) { in runAndDelete() argument
51 std::unique_ptr<T> handler(reinterpret_cast<T*>(obj)); in runAndDelete()
58 inline int threadLaunch(T* obj) { in threadLaunch() argument
59 if (obj == nullptr) { in threadLaunch()
71 rval = pthread_create(&thread, &scoped_attr.attr, &runAndDelete<T>, obj); in threadLaunch()
/system/extras/simpleperf/
Dread_elf.cpp154 static ElfStatus GetBuildIdFromObjectFile(llvm::object::ObjectFile* obj, BuildId* build_id) { in GetBuildIdFromObjectFile() argument
155 if (auto elf = llvm::dyn_cast<llvm::object::ELF32LEObjectFile>(obj)) { in GetBuildIdFromObjectFile()
157 } else if (auto elf = llvm::dyn_cast<llvm::object::ELF64LEObjectFile>(obj)) { in GetBuildIdFromObjectFile()
166 llvm::object::ObjectFile* obj = nullptr; member
198 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.get()); in OpenObjectFile()
199 if (wrapper->obj == nullptr) { in OpenObjectFile()
213 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.get()); in OpenObjectFileInMemory()
214 if (wrapper->obj == nullptr) { in OpenObjectFileInMemory()
231 return GetBuildIdFromObjectFile(wrapper.obj, build_id); in GetBuildIdFromEmbeddedElfFile()
403 if (auto elf = llvm::dyn_cast<llvm::object::ELF32LEObjectFile>(wrapper.obj)) { in ParseSymbolsFromELFFile()
[all …]
/system/apex/apexer/
Dconv_apex_manifest.py42 obj = json.load(f, object_pairs_hook=collections.OrderedDict)
45 for key in list(obj):
47 del obj[key]
51 json.dump(obj, f, indent=2)
53 print(json.dumps(obj, indent=2))
57 obj = json.load(f, object_pairs_hook=collections.OrderedDict)
58 pb = ParseDict(obj, apex_manifest_pb2.ApexManifest())
/system/libhwbinder/
DParcel.cpp84 const flat_binder_object& obj, const void* who) in acquire_binder_object() argument
86 switch (obj.hdr.type) { in acquire_binder_object()
88 if (obj.binder) { in acquire_binder_object()
89 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie); in acquire_binder_object()
90 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who); in acquire_binder_object()
94 if (obj.binder) in acquire_binder_object()
95 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who); in acquire_binder_object()
98 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle); in acquire_binder_object()
106 const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle); in acquire_binder_object()
112 ALOGD("Invalid object type 0x%08x", obj.hdr.type); in acquire_binder_object()
[all …]
DIPCThreadState.cpp519 BHwBinder* obj = mPendingStrongDerefs[0]; in processPendingDerefs() local
521 obj->decStrong(mProcess.get()); in processPendingDerefs()
542 RefBase* obj = mPostWriteStrongDerefs[0]; in processPostWriteDerefs() local
544 obj->decStrong(mProcess.get()); in processPostWriteDerefs()
1035 void IPCThreadState::setTheContextObject(sp<BHwBinder> obj) in setTheContextObject() argument
1037 the_context_object = obj; in setTheContextObject()
1055 BHwBinder* obj; in executeCommand() local
1068 obj = (BHwBinder*)mIn.readPointer(); in executeCommand()
1069 ALOG_ASSERT(refs->refBase() == obj, in executeCommand()
1071 refs, obj, refs->refBase()); in executeCommand()
[all …]
/system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
Dflatbuffers_serialization.h79 size_t Serialize(const SerializeType &obj, uint8_t *out_buffer,
82 const auto fbs_obj = obj.Serialize(&builder);
107 SerializeType *obj, const char *log_tag = "") {
113 if (obj == nullptr) {
131 return obj->Deserialize(*fbs_obj);
/system/bt/osi/src/
Dreactor.cc197 void reactor_unregister(reactor_object_t* obj) { in reactor_unregister() argument
198 CHECK(obj != NULL); in reactor_unregister()
200 reactor_t* reactor = obj->reactor; in reactor_unregister()
202 if (epoll_ctl(reactor->epoll_fd, EPOLL_CTL_DEL, obj->fd, NULL) == -1) in reactor_unregister()
204 __func__, obj->fd, strerror(errno)); in reactor_unregister()
214 list_append(reactor->invalidation_list, obj); in reactor_unregister()
225 obj->mutex->lock(); in reactor_unregister()
226 obj->mutex->unlock(); in reactor_unregister()
227 delete obj->mutex; in reactor_unregister()
228 osi_free(obj); in reactor_unregister()
/system/core/libutils/
DCleanSpec.mk50 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/STATIC_LIBRARIES/libutils_intermediates/import_includ…
51 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/STATIC_LIBRARIES/lib64utils_intermediates/import_incl…
/system/core/logd/
DLogTimes.cpp68 void* LogTimeEntry::threadStart(void* obj) { in threadStart() argument
71 LogTimeEntry* me = reinterpret_cast<LogTimeEntry*>(obj); in threadStart()
147 int LogTimeEntry::FilterFirstPass(const LogBufferElement* element, void* obj) { in FilterFirstPass() argument
148 LogTimeEntry* me = reinterpret_cast<LogTimeEntry*>(obj); in FilterFirstPass()
175 int LogTimeEntry::FilterSecondPass(const LogBufferElement* element, void* obj) { in FilterSecondPass() argument
176 LogTimeEntry* me = reinterpret_cast<LogTimeEntry*>(obj); in FilterSecondPass()
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/src/main/cpp/
Dnative-lib.cpp32 jthrowable obj = (jthrowable)env->NewObject(cls, cid, msg, err); in ThrowErrnoException() local
33 if (obj == nullptr) { in ThrowErrnoException()
36 env->Throw(obj); in ThrowErrnoException()
/system/libhidl/transport/include/hidl/
DHidlBinderSupport.h124 MQDescriptor<T, flavor> &obj, in readEmbeddedFromParcel() argument
133 obj.grantors(), in readEmbeddedFromParcel()
154 const MQDescriptor<T, flavor> &obj, in writeEmbeddedToParcel() argument
163 obj.grantors(), in writeEmbeddedToParcel()
172 obj.handle(), in writeEmbeddedToParcel()
/system/netd/libnetdutils/
DThreadUtilTest.cpp87 NoopRun* obj = new NoopRun(); in TEST() local
89 threadLaunch(obj); in TEST()
/system/nfc/
DCleanSpec.mk46 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libnfc-nci_intermediates)
/system/apex/shim/
DREADME.md44 * out/target/product/${DEVICE}/obj/ETC/com.android.apex.cts.shim.v1_intermediates/com.android.ape…
45 * out/target/product/${DEVICE}/obj/ETC/com.android.apex.cts.shim.v2_intermediates/com.android.ape…
46 * out/target/product/${DEVICE}/obj/ETC/com.android.apex.cts.shim.v2_wrong_sha_intermediates/com.a…
/system/update_engine/update_manager/
Dgeneric_variables_unittest.cc111 CopyConstructorTestClass test_func(CopyConstructorTestClass* obj) { in test_func() argument
112 obj->val_++; // So we can check that the function was called. in test_func()
113 return *obj; in test_func()
Dgeneric_variables.h129 ConstCopyVariable(const std::string& name, const T& obj) in ConstCopyVariable() argument
130 : Variable<T>(name, kVariableModeConst), obj_(obj) {} in ConstCopyVariable()
/system/gsid/tests/
DLockScreenAutomation.java136 UiObject2 obj = mDevice.findObject(selector); in findAndClick() local
137 if (obj != null) { in findAndClick()
138 obj.click(); in findAndClick()
/system/bt/osi/include/
Dreactor.h87 void reactor_unregister(reactor_object_t* obj);
/system/chre/util/include/chre/util/
Dunique_ptr_impl.h67 ObjectType *obj = mObject; in release() local
69 return obj; in release()
/system/libhidl/transport/token/1.0/utils/include/hidl/
DHybridInterface.h377 const ::android::sp<::android::IBinder>& obj); \
401 const ::android::sp<::android::IBinder>& obj) \
404 if (obj != nullptr) { \
406 obj->queryLocalInterface( \
409 intr = new Hp##INTERFACE(obj); \
/system/core/libsysutils/include/sysutils/
DSocketListener.h56 static void *threadStart(void *obj);
/system/chre/platform/shared/include/chre/platform/shared/generated/
Dhost_messages_generated.h292 bool VerifyChreMessage(flatbuffers::Verifier &verifier, const void *obj, ChreMessage type);
1765 inline bool VerifyChreMessage(flatbuffers::Verifier &verifier, const void *obj, ChreMessage type) {
1771 auto ptr = reinterpret_cast<const chre::fbs::NanoappMessage *>(obj);
1775 auto ptr = reinterpret_cast<const chre::fbs::HubInfoRequest *>(obj);
1779 auto ptr = reinterpret_cast<const chre::fbs::HubInfoResponse *>(obj);
1783 auto ptr = reinterpret_cast<const chre::fbs::NanoappListRequest *>(obj);
1787 auto ptr = reinterpret_cast<const chre::fbs::NanoappListResponse *>(obj);
1791 auto ptr = reinterpret_cast<const chre::fbs::LoadNanoappRequest *>(obj);
1795 auto ptr = reinterpret_cast<const chre::fbs::LoadNanoappResponse *>(obj);
1799 auto ptr = reinterpret_cast<const chre::fbs::UnloadNanoappRequest *>(obj);
[all …]
/system/security/keystore/
Dconfirmation_manager.cpp165 sp<BpConfirmationPromptCallback> obj = new BpConfirmationPromptCallback(listener); in finalizeTransaction() local
166 Status status = obj->onConfirmationPromptCompleted(static_cast<int32_t>(responseCode), in finalizeTransaction()
/system/libhwbinder/include/hwbinder/
DIBinder.h106 typedef void (*object_cleanup_func)(const void* id, void* obj, void* cleanupCookie);

12