HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 101 - 125 of 957) sorted by null

1 2 3 45 6 7 8 91011>>

  /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...]
  /developers/samples/android/connectivity/network/BasicNetworkDemo/BasicNetworkDemo/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
LogView.java 40 * @param priority Log level of the data being logged. Verbose, Error, etc.
47 public void println(int priority, String tag, String msg, Throwable tr) {
50 // For the purposes of this View, we want to print the priority as readable text.
51 switch(priority) {
80 // Take the priority, tag, message, and exception, and concatenate as necessary
94 mNext.println(priority, tag, msg, tr);
  /developers/samples/android/connectivity/network/NetworkConnect/NetworkConnect/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
LogView.java 40 * @param priority Log level of the data being logged. Verbose, Error, etc.
47 public void println(int priority, String tag, String msg, Throwable tr) {
50 // For the purposes of this View, we want to print the priority as readable text.
51 switch(priority) {
80 // Take the priority, tag, message, and exception, and concatenate as necessary
94 mNext.println(priority, tag, msg, tr);
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/BasicAndroidKeyStore/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 40 public void println(int priority, String tag, String msg, Throwable tr) {
  /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/av/libvideoeditor/osal/inc/
M4OSA_Thread_priv.h 50 M4OSA_ThreadPriorityLevel priority; /* thread priority level */ member in struct:M4OSA_ThreadContext
  /frameworks/native/include/utils/
Log.h 43 LogIfSlow(const char* tag, android_LogPriority priority,
misc.h 54 void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
  /hardware/samsung_slsi/exynos5/libcamera2/
SignalDrivenThread.cpp 54 int32_t priority, size_t stack)
57 run(name, priority, stack);
60 int32_t priority, size_t stack)
68 run(name, priority, stack);
  /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());
  /external/chromium/net/spdy/
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/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...]
  /external/openssl/crypto/bio/
bss_log.c 131 static void xsyslog(BIO* bp, int priority, const char* string);
173 int priority, i; local
212 priority = mapping[i].log_level;
215 xsyslog(b, priority, pp);
254 static void xsyslog(BIO *bp, int priority, const char *string)
263 switch (priority)
309 static void xsyslog(BIO *bp, int priority, const char *string)
336 switch (priority)
387 static void xsyslog(BIO *bp, int priority, const char *string)
389 syslog(priority, "%s", string)
    [all...]
  /frameworks/av/include/media/
SoundPool.h 97 float rightVolume, int priority, int loop, float rate);
102 int priority() { return mPriority; } function in class:android::SoundEvent
126 int priority, int loop, float rate);
137 void setPriority(int priority) { mPriority = priority; }
169 int load(const char* url, int priority);
170 int load(int fd, int64_t offset, int64_t length, int priority);
172 int play(int sampleID, float leftVolume, float rightVolume, int priority,
180 void setPriority(int channelID, int priority);
203 SoundChannel* allocateChannel_l(int priority);
    [all...]
  /libnativehelper/include/nativehelper/
JNIHelp.h 108 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception);
169 inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception = NULL) {
170 jniLogException(&env->functions, priority, tag, exception);
179 #define LOG_EX(env, priority, tag, ...) \
180 IF_ALOG(priority, tag) jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)

Completed in 1036 milliseconds

1 2 3 45 6 7 8 91011>>