HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 51 - 75 of 546) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/srtp/crypto/include/
kernel_compat.h 58 #define err_report(priority, ...) \
60 if (priority <= err_level) {\
  /frameworks/base/core/java/android/net/
NetworkConfig.java 43 * higher number == higher priority when turning off connections
45 public int priority; field in class:NetworkConfig
62 * [associated radio-type],[priority],[dependencyMet]
69 priority = Integer.parseInt(fragments[3]);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
PriorityThreadFactory.java 25 * A thread factory that creates threads with a given thread priority.
33 public PriorityThreadFactory(String name, int priority) {
35 mPriority = priority;
  /external/chromium/net/spdy/
spdy_http_utils.h 33 int ConvertRequestPriorityToSpdyPriority(RequestPriority priority);
spdy_http_utils.cc 112 // TODO(gavinp): re-adjust this once SPDY v3 has three priority bits,
114 int ConvertRequestPriorityToSpdyPriority(const RequestPriority priority) {
115 DCHECK(HIGHEST <= priority && priority < NUM_PRIORITIES);
116 switch (priority) {
122 return priority;
  /external/nist-sip/java/javax/sip/header/
PriorityHeader.java 6 String NAME = "Priority";
14 void setPriority(String priority) throws ParseException;
  /hardware/invensense/mlsdk/platform/linux/
log_linux.c 45 int _MLPrintLog (int priority, const char* tag, const char* fmt, ...)
51 result = _MLPrintVaLog(priority,tag,fmt,ap);
57 int _MLPrintVaLog(int priority, const char* tag, const char* fmt, va_list args)
68 switch (priority) {
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Issue.java 44 private Issue(String id, String description, String explanation, String category, int priority,
51 mPriority = priority;
63 * @param priority the priority, a number from 1 to 10 with 10 being most
69 int priority, Severity severity) {
70 return new Issue(id, description, explanation, category, priority, severity);
115 * Returns a priority, in the range 1-10, with 10 being the most severe and
118 * @return a priority from 1 to 10
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.conf.orig 230 # priority: priority group (integer)
231 # By default, all networks will get same priority group (0). If some of the
234 # priority groups will be iterated in decreasing priority (i.e., the larger the
235 # priority value, the sooner the network is matched against the scan results).
236 # Within each priority group, networks will be selected based on security
239 # using this priority to select the order for scanning. Instead, they try the
515 priority=5
524 priority=
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf.orig 260 # priority: priority group (integer)
261 # By default, all networks will get same priority group (0). If some of the
264 # priority groups will be iterated in decreasing priority (i.e., the larger the
265 # priority value, the sooner the network is matched against the scan results).
266 # Within each priority group, networks will be selected based on security
269 # using this priority to select the order for scanning. Instead, they try the
567 priority=5
576 priority=
    [all...]
  /hardware/invensense/mlsdk/platform/include/
log.h 277 #define MPL_LOG(priority, tag, fmt, ...) \
278 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
282 * Log macro that allows you to specify a number for the priority.
286 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
287 LOG(priority, tag, fmt, ##__VA_ARGS__)
289 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
290 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
292 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
293 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__)
302 #define MPL_LOG_PRI_VA(priority, tag, fmt, args)
    [all...]
  /external/webkit/Source/WebCore/platform/
PurgeableBuffer.h 47 void setPurgePriority(PurgePriority priority) { m_purgePriority = priority; }
  /frameworks/base/core/java/android/os/
HandlerThread.java 36 * @param priority The priority to run the thread at. The value supplied must be from
39 public HandlerThread(String name, int priority) {
41 mPriority = priority;
  /frameworks/base/core/tests/coretests/src/android/os/
BinderThreadPriorityService.java 49 public void setPriorityAndCallBack(int priority, IBinderThreadPriorityService recurse) {
50 Process.setThreadPriority(priority);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoPriorityResolver.java 39 * Maintains a cache of photo priority per account type. During contact aggregation
40 * photo with a higher priority is chosen for the the entire contact, barring an
55 * The XML tag capturing the picture priority. The syntax is:
56 * <code>&lt;Picture android:priority="6"/&gt;</code>
61 * Name of the attribute of the Picture tag capturing the priority itself.
63 private static final String PRIORITY_ATTR = "priority";
73 * Returns the photo priority for the specified account type. Maintains cache
81 Integer priority = mPhotoPriorities.get(accountType); local
82 if (priority == null) {
83 priority = resolvePhotoPriority(accountType)
128 int priority = DEFAULT_PRIORITY; local
    [all...]
  /bootable/recovery/minzip/
Log.h 131 * verbose priority.
143 * debug priority.
151 * info priority.
159 * warn priority.
167 * error priority.
187 #define LOG(priority, tag, ...) \
188 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
192 * Log macro that allows you to specify a number for the priority.
195 #define LOG_PRI(priority, tag, ...) \
200 * Conditional given a desired logging priority and tag
    [all...]
  /external/chromium/net/http/
http_request_info.h 50 // The priority level for this request.
51 RequestPriority priority; member in struct:net::HttpRequestInfo
  /external/chromium/net/url_request/
url_request_netlog_params.h 24 RequestPriority priority);
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_Thread_priv.h 50 M4OSA_ThreadPriorityLevel priority; /* thread priority level */ member in struct:M4OSA_ThreadContext
  /external/srtp/crypto/kernel/
err.c 95 err_report(int priority, char *format, ...) {
98 if (priority <= err_level) {
109 switch (priority) {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PriorityThreadFactoryTest.java 40 private void priorityTest(int priority) throws InterruptedException {
41 ThreadFactory factory = new PriorityThreadFactory(priority);
45 assertEquals(priority, r.getPriority());
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarNotification.java 49 public int priority = PRIORITY_NORMAL; field in class:StatusBarNotification
66 this.priority = PRIORITY_NORMAL;
83 this.priority = in.readInt();
98 out.writeInt(this.priority);
127 + " notification=" + notification + " priority=" + priority + ")";
  /external/iproute2/tc/
m_skbedit.c 36 "PM = priority PRIORITY \n"
39 "PRIORITY = classID to assign to priority field\n"
60 __u32 flags = 0, priority, mark; local
78 } else if (matches(*argv, "priority") == 0) {
81 if (get_tc_classid(&priority, *argv)) {
82 fprintf(stderr, "Illegal priority\n");
150 &priority, sizeof(priority));
166 __u32 *priority; local
    [all...]
  /external/chromium/chrome/browser/history/
history.h 584 PRIORITY_UI, // The highest priority (must respond to UI events).
586 PRIORITY_LOW, // Low priority things like indexing or expiration.
687 // specified priority. The task will have ownership taken.
688 void ScheduleTask(SchedulePriority priority, Task* task);
697 Handle Schedule(SchedulePriority priority,
705 ScheduleTask(priority,
712 Handle Schedule(SchedulePriority priority,
721 ScheduleTask(priority,
    [all...]
  /external/dnsmasq/src/
log.c 255 /* priority is one of LOG_DEBUG, LOG_INFO, LOG_NOTICE, etc. See sys/syslog.h.
256 OR'd to priority can be MS_TFTP, MS_DHCP, ... to be able to do log separation between
259 void my_syslog(int priority, const char *format, ...)
272 if ((LOG_FACMASK & priority) == MS_TFTP)
274 else if ((LOG_FACMASK & priority) == MS_DHCP)
277 priority = LOG_PRI(priority);
289 if (priority <= LOG_ERR)
291 else if (priority == LOG_WARNING)
293 else if (priority <= LOG_INFO
    [all...]

Completed in 4086 milliseconds

1 23 4 5 6 7 8 91011>>