Home
last modified time | relevance | path

Searched refs:profileType (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/services/audiopolicy/managerdefault/
DAudioPolicyManager.cpp2744 audio_devices_t profileType = outProfile->mSupportedDevices.types(); in AudioPolicyManager() local
2745 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { in AudioPolicyManager()
2746 profileType = mDefaultOutputDevice->type(); in AudioPolicyManager()
2751 profileType = outProfile->mSupportedDevices[k]->type(); in AudioPolicyManager()
2752 if ((profileType & outputDeviceTypes) != 0) { in AudioPolicyManager()
2757 if ((profileType & outputDeviceTypes) == 0) { in AudioPolicyManager()
2763 outputDesc->mDevice = profileType; in AudioPolicyManager()
2817 audio_devices_t profileType = AUDIO_DEVICE_NONE; in AudioPolicyManager() local
2819 profileType = inProfile->mSupportedDevices[k]->type(); in AudioPolicyManager()
2820 if (profileType & inputDeviceTypes) { in AudioPolicyManager()
[all …]
/frameworks/base/core/java/android/app/
DIApplicationThread.java119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) in profilerControl() argument
DApplicationThreadNative.java427 int profileType = data.readInt(); in onTransact() local
430 profilerControl(start, profilerInfo, profileType); in onTransact()
1160 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) in profilerControl() argument
1165 data.writeInt(profileType); in profilerControl()
DActivityThread.java914 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { in profilerControl() argument
915 sendMessage(H.PROFILER_CONTROL, profilerInfo, start ? 1 : 0, profileType); in profilerControl()
4284 final void handleProfilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { in handleProfilerControl() argument
4287 switch (profileType) { in handleProfilerControl()
4304 switch (profileType) { in handleProfilerControl()
DIActivityManager.java312 ProfilerInfo profilerInfo, int profileType) throws RemoteException; in profileControl() argument
DActivityManagerNative.java1541 int profileType = data.readInt(); in onTransact() local
1544 boolean res = profileControl(process, userId, start, profilerInfo, profileType); in onTransact()
4537 ProfilerInfo profilerInfo, int profileType) throws RemoteException in profileControl() argument
4545 data.writeInt(profileType); in profileControl()
/frameworks/base/core/jni/
DAndroidRuntime.cpp616 char profileType[sizeof("-Xprofile-type:")-1 + PROPERTY_VALUE_MAX]; in startVm() local
883 parseRuntimeOption("dalvik.vm.profiler.type", profileType, "-Xprofile-type:"); in startVm()
/frameworks/base/cmds/am/src/com/android/commands/am/
DAm.java1121 int profileType = 0; in runProfile() local
1201 if (!mAm.profileControl(process, userId, start, profilerInfo, profileType)) { in runProfile()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java19425 private void stopProfilerLocked(ProcessRecord proc, int profileType) { in stopProfilerLocked() argument
19428 profileType = mProfileType; in stopProfilerLocked()
19435 proc.thread.profilerControl(false, null, profileType); in stopProfilerLocked()
19457 ProfilerInfo profilerInfo, int profileType) throws RemoteException { in profileControl() argument
19486 mProfileType = profileType; in profileControl()
19494 proc.thread.profilerControl(start, profilerInfo, profileType); in profileControl()
19498 stopProfilerLocked(proc, profileType); in profileControl()