/frameworks/av/services/audiopolicy/managerdefault/ |
D | AudioPolicyManager.cpp | 2744 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/ |
D | IApplicationThread.java | 119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) in profilerControl() argument
|
D | ApplicationThreadNative.java | 427 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()
|
D | ActivityThread.java | 914 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()
|
D | IActivityManager.java | 312 ProfilerInfo profilerInfo, int profileType) throws RemoteException; in profileControl() argument
|
D | ActivityManagerNative.java | 1541 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/ |
D | AndroidRuntime.cpp | 616 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/ |
D | Am.java | 1121 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/ |
D | ActivityManagerService.java | 19425 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()
|