Home
last modified time | relevance | path

Searched refs:threadName (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DAbstractStatsBase.java50 protected AbstractStatsBase(String fileName, String threadName, boolean lock) { in AbstractStatsBase() argument
52 mBackgroundThreadName = threadName; in AbstractStatsBase()
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
DAnimationThread.java73 public AnimationThread(RenderSessionImpl scene, String threadName, in AnimationThread() argument
75 super(threadName); in AnimationThread()
/frameworks/base/core/jni/
DAndroidRuntime.cpp1119 static int javaAttachThread(const char* threadName, JNIEnv** pEnv) in javaAttachThread() argument
1129 args.name = (char*) threadName; in javaAttachThread()
1134 ALOGI("NOTE: attach of thread '%s' failed\n", threadName); in javaAttachThread()
1193 const char* threadName, in javaCreateThreadEtc() argument
1201 LOG_ALWAYS_FATAL_IF(threadName == nullptr, "threadName not provided to javaCreateThreadEtc"); in javaCreateThreadEtc()
1205 args[2] = (void*) strdup(threadName); // javaThreadShell must free in javaCreateThreadEtc()
1208 threadName, threadPriority, threadStackSize, threadId); in javaCreateThreadEtc()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.cpp92 String8 threadName; in initialize() local
95 threadName = String8::format("C2-%d-StreamProc", in initialize()
99 threadName = String8::format("C2-%d-FrameProc", in initialize()
101 mFrameProcessor->run(threadName.string()); in initialize()
104 threadName = String8::format("C2-%d-CaptureSeq", in initialize()
106 mCaptureSequencer->run(threadName.string()); in initialize()
109 threadName = String8::format("C2-%d-JpegProc", in initialize()
111 mJpegProcessor->run(threadName.string()); in initialize()
115 threadName = String8::format("C2-%d-ZslProc", in initialize()
117 mZslProcessor->run(threadName.string()); in initialize()
[all …]
/frameworks/base/include/android_runtime/
DAndroidRuntime.h150 const char* threadName,
/frameworks/av/services/camera/libcameraservice/api2/
DCameraDeviceClient.cpp95 String8 threadName; in initialize() local
97 threadName = String8::format("CDU-%d-FrameProc", mCameraId); in initialize()
98 mFrameProcessor->run(threadName.string()); in initialize()