/frameworks/base/media/java/android/media/audiofx/ |
Virtualizer.java | 88 * @param priority the priority level requested by the application for controlling the Virtualizer 90 * how much the requesting application needs control of effect parameters. The normal priority 100 public Virtualizer(int priority, int audioSession) 103 super(EFFECT_TYPE_VIRTUALIZER, EFFECT_TYPE_NULL, priority, audioSession);
|
/frameworks/base/services/common_time/ |
common_time_server_api.cpp | 78 status_t CommonTimeServer::getMasterElectionPriority(uint8_t *priority) { 80 *priority = mMasterPriority; 84 status_t CommonTimeServer::setMasterElectionPriority(uint8_t priority) { 87 if (priority > 0x7F) 90 mMasterPriority = priority;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintColumn.java | 220 // sorting marker to indicate priority. (Note that we return from isAscending too.) 487 return "Priority"; 507 int priority = getPriority(marker); local 508 if (priority > 0) { 509 return Integer.toString(priority);
|
/external/chromium/base/ |
message_pump_mac.mm | 65 0, // priority 74 1, // priority 80 2, // priority 86 0, // priority 96 0, // priority 104 0, // priority 113 0, // priority 225 // CFRunLoopTimers fire outside of the priority scheme for CFRunLoopSources. 226 // In order to establish the proper priority in which work and delayed work 342 // Immediately try work in priority order [all...] |
/external/chromium/net/spdy/ |
spdy_session.h | 83 RequestPriority priority, 110 RequestPriority priority, 225 PendingCreateStream(const GURL& url, RequestPriority priority, 229 : url(&url), priority(priority), spdy_stream(spdy_stream), 233 RequestPriority priority; member in struct:net::SpdySession::PendingCreateStream 271 RequestPriority priority, 337 // |priority| is the priority for insertion into the queue. 339 void QueueFrame(spdy::SpdyFrame* frame, spdy::SpdyPriority priority, [all...] |
/external/stressapptest/src/ |
worker.h | 206 // Enum to mark a thread as low/med/high priority. 207 enum Priority { 223 void SetPriority(Priority priority) { priority_ = priority; } 318 int priority, 368 int priority, 393 Priority priority_; // Worker thread priority. 434 int priority, [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
README-HS20 | 33 network selection, wpa_supplicant picks the highest priority enabled 112 # priority: Priority group 113 # By default, all networks and credentials get the same priority group 114 # (0). This field can be used to give higher priority for credentials 118 # with the highest priority value will be selected. 253 > set_cred 0 priority 1 264 > set_cred 1 priority 1 287 > set_network 0 priority 0 307 The preferred credentials/networks can be indicated with the priority [all...] |
/external/chromium/net/socket/ |
client_socket_pool_manager.cc | 103 request_info.priority, 116 request_info.priority, 168 request_info.priority, 198 request_info.priority, callback, ssl_pool, 213 request_info.priority, callback, 227 request_info.priority, callback, pool, 241 request_info.priority, callback,
|
transport_client_socket_pool.cc | 62 RequestPriority priority, 71 Initialize(priority, referrer, disable_resolver_cache); 76 void TransportSocketParams::Initialize(RequestPriority priority, 83 destination_.set_priority(priority); 443 RequestPriority priority, 459 return base_.RequestSocket(group_name, *casted_params, priority, handle,
|
/external/wpa_supplicant_8/hostapd/ |
main.c | 122 int priority; local 126 priority = LOG_DEBUG; 129 priority = LOG_INFO; 132 priority = LOG_NOTICE; 135 priority = LOG_WARNING; 138 priority = LOG_INFO; 141 syslog(priority, "%s", format);
|
/frameworks/av/media/libmedia/ |
AudioEffect.cpp | 46 int32_t priority, 54 mStatus = set(type, uuid, priority, cbf, user, sessionId, io); 59 int32_t priority, 86 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io); 91 int32_t priority, 119 mPriority = priority; 131 mIEffectClient, priority, io, mSessionId, &mStatus, &mId, &enabled);
|
/frameworks/base/core/java/android/speech/tts/ |
TtsEngines.java | 248 engine.priority = resolve.priority; 264 * the engines are sorted in order of their declared priority. 276 // Note, this isn't a typo. Higher priority numbers imply 277 // higher priority, but are "lower" in the sort order. 278 return rhs.priority - lhs.priority;
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/ |
CdmaSmsCbTest.java | 79 * @param priority message priority 83 private static BitwiseOutputStream createBearerDataStream(int messageId, int priority, 94 if (priority != -1) { 97 bos.write(2, (priority & 0x03)); 132 * @param priority message priority 142 private static SmsMessage createCmasSmsMessage(int serviceCategory, int messageId, int priority, 167 BitwiseOutputStream bos = createBearerDataStream(messageId, priority, language); 184 * @param priority message priorit [all...] |
/frameworks/base/core/java/android/app/ |
Notification.java | 345 * Obsolete flag indicating high-priority notifications; use the priority field instead. 347 * @deprecated Use {@link #priority} with a positive value. 354 * Default notification {@link #priority}. If your application does not prioritize its own 360 * Lower {@link #priority}, for items that are less important. The UI may choose to show these 367 * Lowest {@link #priority}; these items might not be shown to the user except under special 373 * Higher {@link #priority}, for more important notifications or alerts. The UI may choose to 380 * Highest {@link #priority}, for your application's most important items that require the 386 * Relative priority for this notification. 388 * Priority is an indication of how much of the user's valuable attention should be consumed b 394 public int priority; field in class:Notification [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
CalendarTest.java | 122 // WEEK_OF_YEAR has priority over MONTH/DATE 133 // WEEK_OF_YEAR has priority over MONTH/DATE 162 // WEEK_OF_MONTH has priority 174 // DAY_OF_WEEK_IN_MONTH has priority over WEEK_OF_YEAR 185 // WEEK_OF_MONTH has priority, MONTH not set 196 // WEEK_OF_YEAR has priority when MONTH set last and DAY_OF_WEEK set 225 // WEEK_OF_MONTH has priority 236 // DATE has priority when set last 246 // DATE has priority when set last, MONTH not set 255 // DAY_OF_YEAR has priority when MONTH set last and DATE not se [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
CalendarTest.java | 122 // WEEK_OF_YEAR has priority over MONTH/DATE 133 // WEEK_OF_YEAR has priority over MONTH/DATE 162 // WEEK_OF_MONTH has priority 174 // DAY_OF_WEEK_IN_MONTH has priority over WEEK_OF_YEAR 185 // WEEK_OF_MONTH has priority, MONTH not set 196 // WEEK_OF_YEAR has priority when MONTH set last and DAY_OF_WEEK set 225 // WEEK_OF_MONTH has priority 236 // DATE has priority when set last 246 // DATE has priority when set last, MONTH not set 255 // DAY_OF_YEAR has priority when MONTH set last and DATE not se [all...] |
/dalvik/vm/ |
Misc.cpp | 43 * "priority" and "tag" determine the values passed to the log calls. 47 void dvmPrintHexDumpEx(int priority, const char* tag, const void* vaddr, 112 LOG_PRI(priority, tag, "%s", out); 137 void dvmCreateLogOutputTarget(DebugOutputTarget* target, int priority, 144 target->data.log.priority = priority; 180 LOG_PRI_VA(target->data.log.priority, target->data.log.tag, 508 * in a loop. The problem with sched_yield is that, for a high-priority 647 long cutime, cstime, priority, nice, zero, itrealvalue; 660 &cutime, &cstime, &priority, &nice, &zero, &itrealvalue [all...] |
/packages/apps/Phone/ |
AndroidManifest.xml | 185 <intent-filter android:priority="1000"> 191 android:priority="1000"> 196 <intent-filter android:priority="1000"> 201 <intent-filter android:priority="1000"> 213 <intent-filter android:priority="1000"> 219 android:priority="1000"> 224 <intent-filter android:priority="1000"> 229 <intent-filter android:priority="1000"> 240 <intent-filter android:priority="1"> 450 <intent-filter android:priority="100" [all...] |
/external/clang/lib/CodeGen/ |
CodeGenModule.h | 91 unsigned int priority; member in struct:clang::CodeGen::OrderGlobalInits 94 : priority(p), lex_order(l) {} 97 return priority == RHS.priority && 102 if (priority < RHS.priority) 105 return priority == RHS.priority && lex_order < RHS.lex_order; 320 return LHS.first.priority < RHS.first.priority; [all...] |
/bionic/libc/bionic/ |
libc_logging.cpp | 423 static int __libc_write_log(int priority, const char* tag, const char* msg) { 434 vec[0].iov_base = &priority; 444 int __libc_format_log_va_list(int priority, const char* tag, const char* format, va_list args) { 448 return __libc_write_log(priority, tag, buffer); 451 int __libc_format_log(int priority, const char* tag, const char* format, ...) { 454 int result = __libc_format_log_va_list(priority, tag, format, args);
|
/external/icu4c/i18n/unicode/ |
ucoleitr.h | 55 * ordering priority of the positioned character. The ordering priority of a 175 * Get the ordering priority of the next collation element in the text. 187 * Get the ordering priority of the previous collation element in the text. 207 * Get the processed ordering priority of the next collation element in the text. 223 * Get the processed ordering priority of the previous collation element in the text.
|
/external/iproute2/tc/ |
q_cbq.c | 289 wrr.priority = prio; 383 if (wrr.priority == 0 && (n->nlmsg_flags&NLM_F_EXCL)) { 385 wrr.priority = TC_CBQ_MAXPRIO; 391 wrr.weight = (wrr.priority == TC_CBQ_MAXPRIO) ? 1 : r.rate; 512 if (wrr->priority != TC_CBQ_MAXPRIO) 513 fprintf(f, "prio %u", wrr->priority);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnection.java | 168 int priority = 0; // TODO: permit the caller to specify a priority? local 180 stream = new SpdyStream(streamId, this, flags, priority, slot, requestHeaders, settings); 187 spdyWriter.synStream(flags, streamId, associatedStreamId, priority, slot, requestHeaders); 454 public void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot, 460 new SpdyStream(streamId, SpdyConnection.this, flags, priority, slot, nameValueBlock,
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/ |
AudioFileReaderThread.c | 172 we'll now set the priority of the thread to the nominated priority 181 if (result) return 0; /*THROW_RESULT("thread_policy - Couldn't set thread as fixed priority.")*/ 182 /* set priority */ 183 /* precedency policy's "importance" value is relative to spawning thread's priority */ 188 if (result) return 0; /*THROW_RESULT("thread_policy - Couldn't set thread priority.")*/
|
/external/webkit/Source/WebCore/html/ |
HTMLLinkElement.cpp | 260 ResourceLoadPriority priority = ResourceLoadPriorityUnresolved; 262 priority = ResourceLoadPriorityLow; 264 m_cachedLinkResource = document()->cachedResourceLoader()->requestLinkResource(m_url, priority); 303 // Load stylesheets that are not needed for the rendering immediately with low priority. 304 ResourceLoadPriority priority = blocking ? ResourceLoadPriorityUnresolved : ResourceLoadPriorityVeryLow; local 305 m_cachedSheet = document()->cachedResourceLoader()->requestCSSStyleSheet(m_url, charset, priority);
|