Searched refs:priority (Results 1 - 25 of 60) sorted by relevance

123

/system/libhidl/transport/
H A DHidlTransportSupport.cpp42 int policy, int priority) {
53 if (policy == SCHED_NORMAL && (priority < -20 || priority > 19)) {
54 ALOGE("Invalid priority for SCHED_NORMAL: %d", priority);
56 } else if (priority < 1 || priority > 99) {
57 ALOGE("Invalid priority for real-time policy: %d", priority);
61 details::gServicePrioMap.set(service, { policy, priority });
41 setMinSchedulerPolicy(const sp<::android::hidl::base::V1_0::IBase>& service, int policy, int priority) argument
[all...]
/system/timezone/input_data/android/
H A Dcountryzones.txt84 # priority:
87 # for a given time range). Zones that are identical but lower priority
89 # with the higher priority zone for that period. The priority is in the
90 # range >=1, the default is 1. Whether a priority needs to be
96 # Often the exact priority assigned doesn't matter and zone priorities are
239 priority:15600
245 priority:3310
251 priority:1210
257 priority
[all...]
/system/core/include/utils/
H A Dmisc.h35 void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
H A DCallStack.h51 android_LogPriority priority = ANDROID_LOG_DEBUG,
H A DProcessCallStack.h45 void log(const char* logtag, android_LogPriority priority = ANDROID_LOG_DEBUG,
/system/core/libutils/include/utils/
H A Dmisc.h35 void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
H A DCallStack.h51 android_LogPriority priority = ANDROID_LOG_DEBUG,
H A DProcessCallStack.h45 void log(const char* logtag, android_LogPriority priority = ANDROID_LOG_DEBUG,
/system/core/libutils/
H A Dmisc.cpp39 int priority; member in struct:android::sysprop_change_callback_info
48 void add_sysprop_change_callback(sysprop_change_callback cb, int priority) { argument
55 info.priority = priority;
58 if (priority >= gSyspropList->itemAt(i).priority) {
H A DCallStack.cpp54 void CallStack::log(const char* logtag, android_LogPriority priority, const char* prefix) const { argument
55 LogPrinter printer(logtag, priority, prefix, /*ignoreBlankLines*/false);
H A DPrinter.cpp66 android_LogPriority priority,
70 mPriority(priority),
65 LogPrinter(const char* logtag, android_LogPriority priority, const char* prefix, bool ignoreBlankLines) argument
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DZoneInfo.java35 * otherwise identical for a zone offset period. Highest numerical priority "wins".
37 private final int priority; field in class:ZoneInfo
45 private ZoneInfo(String zoneId, int priority, List<ZoneOffsetPeriod> zoneOffsetPeriods) { argument
46 if (priority < MIN_PRIORITY) {
47 throw new IllegalArgumentException("priority must be >=" + MIN_PRIORITY);
50 this.priority = priority;
57 * <p>The priority must be >= 1, and startInclusive is expected to be before endExclusive.
62 public static ZoneInfo create(TimeZoneNames timeZoneNames, BasicTimeZone timeZone, int priority, argument
75 return new ZoneInfo(timeZone.getID(), priority, zoneOffsetPeriod
[all...]
/system/bt/osi/include/
H A Dthread.h63 // Attempts to sets the |priority| of a given |thread|.
66 bool thread_set_priority(thread_t* thread, int priority);
68 // Attempts to set |thread| to the real-time SCHED_FIFO |priority|.
71 // to sched_get_priority_min(SCHED_FIFO). Larger values are higher priority.
73 bool thread_set_rt_priority(thread_t* thread, int priority);
/system/bt/binder/android/bluetooth/
H A DIBluetoothPbapClient.aidl32 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothA2dpSink.aidl34 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothHearingAid.aidl35 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothMap.aidl35 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothSap.aidl35 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothHidHost.aidl33 boolean setPriority(in BluetoothDevice device, int priority);
H A DIBluetoothMapClient.aidl35 boolean setPriority(in BluetoothDevice device,in int priority);
/system/core/include/log/
H A Dlog_main.h69 * Log macro that allows you to specify a number for the priority.
72 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
79 #define LOG_PRI_VA(priority, tag, fmt, args) \
80 android_vprintLog(priority, NULL, tag, fmt, args)
255 * verbose priority.
267 * debug priority.
275 * info priority.
283 * warn priority.
291 * error priority
[all...]
/system/core/liblog/include/log/
H A Dlog_main.h69 * Log macro that allows you to specify a number for the priority.
72 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
79 #define LOG_PRI_VA(priority, tag, fmt, args) \
80 android_vprintLog(priority, NULL, tag, fmt, args)
255 * verbose priority.
267 * debug priority.
275 * info priority.
283 * warn priority.
291 * error priority
[all...]
/system/core/liblog/include_vndk/log/
H A Dlog_main.h69 * Log macro that allows you to specify a number for the priority.
72 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
79 #define LOG_PRI_VA(priority, tag, fmt, args) \
80 android_vprintLog(priority, NULL, tag, fmt, args)
255 * verbose priority.
267 * debug priority.
275 * info priority.
283 * warn priority.
291 * error priority
[all...]
/system/timezone/tzlookup_generator/src/main/proto/
H A Dcountry_zones_file.proto39 optional uint32 priority = 4 [default = 1];
/system/bt/osi/src/
H A Dthread.cc148 bool thread_set_priority(thread_t* thread, int priority) { argument
151 const int rc = setpriority(PRIO_PROCESS, thread->tid, priority);
154 "%s unable to set thread priority %d for tid %d, error %d",
155 __func__, priority, thread->tid, rc);
162 bool thread_set_rt_priority(thread_t* thread, int priority) { argument
166 rt_params.sched_priority = priority;
171 "%s unable to set SCHED_FIFO priority %d for tid %d, error %s",
172 __func__, priority, thread->tid, strerror(errno));

Completed in 315 milliseconds

123