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

/frameworks/base/core/java/android/app/
H A DIApplicationThread.java119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) argument
H A DApplicationThreadNative.java427 int profileType = data.readInt();
430 profilerControl(start, profilerInfo, profileType);
1160 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) argument
1165 data.writeInt(profileType);
H A DActivityThread.java914 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { argument
915 sendMessage(H.PROFILER_CONTROL, profilerInfo, start ? 1 : 0, profileType);
4284 final void handleProfilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { argument
4287 switch (profileType) {
4304 switch (profileType) {
H A DIActivityManager.java312 ProfilerInfo profilerInfo, int profileType) throws RemoteException;
311 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument
H A DActivityManagerNative.java1541 int profileType = data.readInt();
1544 boolean res = profileControl(process, userId, start, profilerInfo, profileType);
4537 ProfilerInfo profilerInfo, int profileType) throws RemoteException
4545 data.writeInt(profileType);
4536 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp2788 audio_devices_t profileType = outProfile->mSupportedDevices.types(); local
2789 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
2790 profileType = mDefaultOutputDevice->type();
2795 profileType = outProfile->mSupportedDevices[k]->type();
2796 if ((profileType & outputDeviceTypes) != 0) {
2801 if ((profileType & outputDeviceTypes) == 0) {
2807 outputDesc->mDevice = profileType;
2861 audio_devices_t profileType = AUDIO_DEVICE_NONE; local
2863 profileType = inProfile->mSupportedDevices[k]->type();
2864 if (profileType
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp616 char profileType[sizeof("-Xprofile-type:")-1 + PROPERTY_VALUE_MAX]; local
883 parseRuntimeOption("dalvik.vm.profiler.type", profileType, "-Xprofile-type:");
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1121 int profileType = 0;
1201 if (!mAm.profileControl(process, userId, start, profilerInfo, profileType)) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java19512 private void stopProfilerLocked(ProcessRecord proc, int profileType) { argument
19515 profileType = mProfileType;
19522 proc.thread.profilerControl(false, null, profileType);
19544 ProfilerInfo profilerInfo, int profileType) throws RemoteException {
19573 mProfileType = profileType;
19581 proc.thread.profilerControl(start, profilerInfo, profileType);
19585 stopProfilerLocked(proc, profileType);
19543 profileControl(String process, int userId, boolean start, ProfilerInfo profilerInfo, int profileType) argument

Completed in 175 milliseconds