/cts/tests/tests/os/src/android/os/cts/ |
ProcessTest.java | 98 * 1.Set the priority of the calling thread, based on Linux priorities level, 99 * from -20 for highest scheduling priority to 19 for lowest scheduling priority. 104 int priority = Process.getThreadPriority(myTid); local 105 assertTrue(priority >= THREAD_PRIORITY_HIGHEST 106 && priority <= Process.THREAD_PRIORITY_LOWEST);
|
/developers/samples/android/connectivity/network/BasicNetworkDemo/BasicNetworkDemo/src/main/java/com/example/android/common/logger/ |
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/ |
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/security/keystore/BasicAndroidKeyStore/BasicAndroidKeyStore/src/main/java/com/example/android/common/logger/ |
LogView.java | 44 * @param priority Log level of the data being logged. Verbose, Error, etc. 51 public void println(int priority, String tag, String msg, Throwable tr) { 54 // For the purposes of this View, we want to print the priority as readable text. 55 switch(priority) { 84 // Take the priority, tag, message, and exception, and concatenate as necessary 99 mNext.println(priority, tag, msg, tr);
|
/external/chromium/chrome/browser/ |
oom_priority_manager.cc | 85 // existing renderers in priority order, and hand out oom_adj scores 152 // below the renderers in priority, so 5 to 10 gives us some 153 // variation in priority without taking up the whole range. In the 163 float priority = kMinPriority; local 171 static_cast<int>(priority + 0.5f)); 172 priority += priority_increment;
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
CdmaSmsCbProgramData.java | 60 /** Alert option: low-priority alert once. */ 63 /** Alert option: low-priority alert - repeat. */ 66 /** Alert option: medium-priority alert once. */ 69 /** Alert option: medium-priority alert - repeat. */ 72 /** Alert option: high-priority alert once. */ 75 /** Alert option: high-priority alert - repeat. */
|
/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__)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
resource.h | 92 /* Maximum nice priority allowed to raise to. 98 /* Maximum realtime priority allowed for non-priviledged 206 /* Number of involuntary context switches, i.e. a higher priority process 211 /* Priority limits. */ 212 #define PRIO_MIN -20 /* Minimum priority a process can have. */ 213 #define PRIO_MAX 20 /* Maximum priority a process can have. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
resource.h | 92 /* Maximum nice priority allowed to raise to. 98 /* Maximum realtime priority allowed for non-priviledged 206 /* Number of involuntary context switches, i.e. a higher priority process 211 /* Priority limits. */ 212 #define PRIO_MIN -20 /* Minimum priority a process can have. */ 213 #define PRIO_MAX 20 /* Maximum priority a process can have. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
resource.h | 92 /* Maximum nice priority allowed to raise to. 98 /* Maximum realtime priority allowed for non-priviledged 206 /* Number of involuntary context switches, i.e. a higher priority process 211 /* Priority limits. */ 212 #define PRIO_MIN -20 /* Minimum priority a process can have. */ 213 #define PRIO_MAX 20 /* Maximum priority a process can have. */
|
/frameworks/av/include/media/ |
AudioEffect.h | 162 * the same effect type but with a higher priority. Control is returned when the 192 * on the priority parameter. If priority is higher than the priority used by the current 215 * priority: requested priority for effect control: the priority level corresponds to the 216 * value of priority parameter: negative values indicate lower priorities, positive values 217 * higher priorities, 0 being the normal priority. 229 int32_t priority = 0 295 int32_t priority() const { return mPriority; } function in class:android::AudioEffect [all...] |
/system/core/include/cutils/ |
log.h | 157 * verbose priority. 169 * debug priority. 177 * info priority. 185 * warn priority. 193 * error priority. 429 #define ALOG(priority, tag, ...) \ 430 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) 434 * Log macro that allows you to specify a number for the priority. 437 #define LOG_PRI(priority, tag, ...) \ 438 android_printLog(priority, tag, __VA_ARGS__ [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...] |
/external/srec/portable/include/ |
ptrd.h | 62 * Every thread has a priority. Threads with higher priority are executed in preference 63 * to threads with lower priority. When code running in some thread creates a new Thread 64 * object, the new thread has its priority initially set equal to the priority of the creating 375 * Minimum thread priority. 380 * Maximum thread priority. 385 * Normal thread priority. 429 * Returns the thread priority. 432 * @param value [out] Thread priority [all...] |
/external/chromium/chrome/browser/prefs/ |
pref_value_store.h | 26 // the value of a Preference from the source with the highest priority, and 85 // a higher-priority source. 92 // a higher-priority source. 98 // there is no higher-priority source controlling it. 102 // whether there is no higher-priority source controlling it. 106 // PrefStores must be listed here in order from highest to lowest priority. 186 // overridden by a higher-priority store.
|
/packages/apps/Email/src/com/android/email/service/ |
AttachmentDownloadService.java | 72 // Low priority will be used for opportunistic downloads 74 // Normal priority is for forwarded downloads in outgoing mail 76 // High priority is for user requests 167 final int priority; field in class:AttachmentDownloadService.DownloadRequest 187 priority = getPriority(attachment); 208 * Comparator class for the download set; we first compare by priority. Requests with equal 209 * priority are compared by the time the request was created (older requests come first) 215 if (req1.priority != req2.priority) { 216 res = (req1.priority < req2.priority) ? -1 : 1 257 long priority = getPriority(att); local [all...] |
/external/libxslt/libxslt/ |
pattern.c | 101 float priority; /* the priority */ member in struct:_xsltCompMatch 2034 float priority; \/* the priority *\/ local 2240 float priority; local [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
PriorityBlockingQueue.java | 22 * {@code null} elements. A priority queue relying on {@linkplain 34 * can be used to <em>remove</em> some or all elements in priority 38 * of elements with equal priority. If you need to enforce an 40 * secondary key to break ties in primary priority values. For 102 * Priority queue represented as a balanced binary heap: the two 104 * priority queue is ordered by comparator, or by the elements' 112 * The number of elements in the priority queue. 117 * The comparator, or null if priority queue uses elements' 158 * @param initialCapacity the initial capacity for this priority queue 171 * @param initialCapacity the initial capacity for this priority queu [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
preauth.c | 29 int priority; member in struct:rsn_pmksa_candidate 291 /* TODO: drop priority for old candidate entries */ 342 * @prio: Priority (the smaller number, the higher priority) 364 /* If BSSID already on candidate list, update the priority of the old 365 * entry. Do not override priority based on normal scan results. */ 378 cand->priority = prio; 384 cand->priority = prio; 387 /* Add candidate to the list; order by increasing priority value. i.e., 388 * highest priority (smallest value) first. * [all...] |
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/annotations/2.0.1/ |
annotations-2.0.1.jar | |
/frameworks/av/media/common_time/ |
ICommonTimeConfig.cpp | 56 virtual status_t getMasterElectionPriority(uint8_t *priority) { 65 *priority = static_cast<uint8_t>(reply.readInt32()); 72 virtual status_t setMasterElectionPriority(uint8_t priority) { 75 data.writeInt32(static_cast<int32_t>(priority)); 331 uint8_t priority; local 332 status_t status = getMasterElectionPriority(&priority); 335 reply->writeInt32(static_cast<int32_t>(priority)); 342 uint8_t priority = static_cast<uint8_t>(data.readInt32()); local 343 status_t status = setMasterElectionPriority(priority);
|
/external/replicaisland/src/com/replica/replicaisland/ |
LevelBuilder.java | 119 public void addTileMapLayer(GameObject background, int priority, float scrollSpeed, 142 priority = SortConstants.OVERLAY; //hack! 152 backgroundRender.setPriority(priority); 182 // We want the foreground layer to be render priority FOREGROUND, but 185 // its render priority is set.
|
RenderSystem.java | 53 public void scheduleForDraw(DrawableObject object, Vector2 position, int priority, boolean cameraRelative) { 56 element.set(object, position, priority, cameraRelative); 104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) { 109 final int sortBucket = priority * TEXTURE_SORT_BUCKET_SIZE; 114 sortOffset = (tex.resource % TEXTURE_SORT_BUCKET_SIZE) * Utils.sign(priority);
|
/external/webkit/Source/WebCore/loader/cache/ |
CachedResourceLoader.h | 63 CachedCSSStyleSheet* requestCSSStyleSheet(const String& url, const String& charset, ResourceLoadPriority priority = ResourceLoadPriorityUnresolved); 72 CachedResource* requestLinkResource(const String &url, ResourceLoadPriority priority = ResourceLoadPriorityUnresolved); 118 CachedResource* requestResource(CachedResource::Type, const String& url, const String& charset, ResourceLoadPriority priority = ResourceLoadPriorityUnresolved, bool isPreload = false); 119 CachedResource* revalidateResource(CachedResource*, ResourceLoadPriority priority); 120 CachedResource* loadResource(CachedResource::Type, const KURL&, const String& charset, ResourceLoadPriority priority);
|
/packages/inputmethods/OpenWnn/ |
README.txt | 34 Index 0: English dictionary for normal prediction (high priority) 35 Index 1: English dictionary for normal prediction (middle priority) 36 Index 2: English dictionary for normal prediction (low priority) 41 Index 0: Japanese dictionary for normal prediction (high priority) 42 Index 1: Japanese dictionary for normal prediction (low priority)
|