Searched defs:profileType (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java415 int profileType = data.readInt();
418 profilerControl(start, profilerInfo, profileType);
1116 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) argument
1121 data.writeInt(profileType);
H A DIApplicationThread.java119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) argument
H A DActivityManagerNative.java1489 int profileType = data.readInt();
1492 boolean res = profileControl(process, userId, start, profilerInfo, profileType);
4276 ProfilerInfo profilerInfo, int profileType) throws RemoteException
4284 data.writeInt(profileType);
4275 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument
H A DActivityThread.java897 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { argument
898 sendMessage(H.PROFILER_CONTROL, profilerInfo, start ? 1 : 0, profileType);
4149 final void handleProfilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { argument
4152 switch (profileType) {
4169 switch (profileType) {
H A DIActivityManager.java302 ProfilerInfo profilerInfo, int profileType) throws RemoteException;
301 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp573 char profileType[sizeof("-Xprofile-type:")-1 + PROPERTY_VALUE_MAX]; local
877 parseRuntimeOption("dalvik.vm.profiler.type", profileType, "-Xprofile-type:");
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp3105 audio_devices_t profileType = outProfile->mSupportedDevices.types(); local
3106 if ((profileType & mDefaultOutputDevice->mDeviceType) != AUDIO_DEVICE_NONE) {
3107 profileType = mDefaultOutputDevice->mDeviceType;
3112 profileType = outProfile->mSupportedDevices[k]->mDeviceType;
3113 if ((profileType & outputDeviceTypes) != 0) {
3118 if ((profileType & outputDeviceTypes) == 0) {
3123 outputDesc->mDevice = profileType;
3178 audio_devices_t profileType = AUDIO_DEVICE_NONE; local
3180 profileType = inProfile->mSupportedDevices[k]->mDeviceType;
3181 if (profileType
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java18592 private void stopProfilerLocked(ProcessRecord proc, int profileType) { argument
18595 profileType = mProfileType;
18602 proc.thread.profilerControl(false, null, profileType);
18624 ProfilerInfo profilerInfo, int profileType) throws RemoteException {
18653 mProfileType = profileType;
18661 proc.thread.profilerControl(start, profilerInfo, profileType);
18665 stopProfilerLocked(proc, profileType);
18623 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument

Completed in 262 milliseconds