Searched defs:prio (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp40 virtual int requestPriority(int32_t pid, int32_t tid, int32_t prio, bool asynchronous) argument
46 data.writeInt32(prio);
H A DSchedulingPolicyService.cpp31 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous) argument
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
/frameworks/base/services/core/java/com/android/server/os/
H A DSchedulingPolicyService.java33 // Minimum and maximum values allowed for requestPriority parameter prio
40 public int requestPriority(int pid, int tid, int prio) { argument
41 //Log.i(TAG, "requestPriority(pid=" + pid + ", tid=" + tid + ", prio=" + prio + ")");
49 if (!isPermittedCallingUid() || prio < PRIORITY_MIN ||
50 prio > PRIORITY_MAX || Process.getThreadGroupLeader(tid) != pid) {
58 Process.setThreadScheduler(tid, Process.SCHED_FIFO, prio);
/frameworks/base/core/tests/coretests/src/android/os/
H A DBinderThreadPriorityTest.java111 public static String expectedSchedulerGroup(int prio) { argument
112 return prio < Process.THREAD_PRIORITY_BACKGROUND ? "/" : "/bg_non_interactive";
116 for (int prio = 19; prio >= -20; prio--) {
117 Process.setThreadPriority(prio);
120 assertEquals(prio, Process.getThreadPriority(Process.myTid()));
121 assertEquals(expectedSchedulerGroup(prio), getSchedulerGroup());
124 assertEquals(prio, mService.getThreadPriority());
125 assertEquals(expectedSchedulerGroup(prio), mServic
[all...]
/frameworks/base/libs/common_time/
H A Dcommon_time_server_packets.cpp65 inline uint64_t packDeviceID(uint64_t devID, uint8_t prio) { argument
67 (static_cast<uint64_t>(prio) << kDevicePriorityShift);
H A Dutils.cpp67 void LogRing::log(int prio, const char* tag, const char* fmt, ...) { argument
70 internalLog(prio, tag, fmt, argp);
81 void LogRing::internalLog(int prio, argument
110 LOG_PRI_VA(prio, tag, fmt, argp);
/frameworks/native/vulkan/libvulkan/
H A Dapi.cpp140 int prio = -PROPERTY_VALUE_MAX; local
146 AddImplicitLayer(prio, p, static_cast<size_t>(delim - p));
148 prio++;
153 AddImplicitLayer(prio, p, strlen(p));
1024 int prio; local
1027 prio = ANDROID_LOG_ERROR;
1030 prio = ANDROID_LOG_WARN;
1032 prio = ANDROID_LOG_INFO;
1034 prio = ANDROID_LOG_DEBUG;
1036 prio
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.h129 PrioConfigEventData(pid_t pid, pid_t tid, int32_t prio) : argument
130 mPid(pid), mTid(tid), mPrio(prio) {}
133 snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d\n", mPid, mTid, mPrio);
143 PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) : argument
145 mData = new PrioConfigEventData(pid, tid, prio);
270 void sendPrioConfigEvent(pid_t pid, pid_t tid, int32_t prio);
271 void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio);
H A DThreads.cpp747 void AudioFlinger::ThreadBase::sendPrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) argument
750 sendPrioConfigEvent_l(pid, tid, prio);
754 void AudioFlinger::ThreadBase::sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio) argument
756 sp<ConfigEvent> configEvent = (ConfigEvent *)new PrioConfigEvent(pid, tid, prio);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 313 milliseconds