HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 226 - 250 of 384) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/java/android/media/audiofx/
EnvironmentalReverb.java 130 * @param priority the priority level requested by the application for controlling the
133 * The normal priority is 0, above normal is a positive number, below normal a negative number.
144 public EnvironmentalReverb(int priority, int audioSession)
146 super(EFFECT_TYPE_ENV_REVERB, EFFECT_TYPE_NULL, priority, audioSession);
AudioEffect.java 54 * control of the effect engine or not depending on the priority parameter. If priority is higher
55 * than the priority used by the current effect engine owner, the control will be transfered to the
321 * @param priority the priority level requested by the application for
325 * parameters. The normal priority is 0, above normal is a
338 public AudioEffect(UUID type, UUID uuid, int priority, int audioSession)
345 type.toString(), uuid.toString(), priority, audioSession, id,
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 291 int priority = getConfig().getQueryThreadPriority();
293 new PriorityThreadFactory(priority));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
syncstr.h 299 INT32 priority B32;
304 * Get Priority
319 INT32 priority B32;
XKBproto.h 661 CARD8 priority; member in struct:_xkbSectionWireDesc
710 CARD8 priority; member in struct:_xkbShapeDoodadWireDesc
724 CARD8 priority; member in struct:_xkbTextDoodadWireDesc
739 CARD8 priority; member in struct:_xkbIndicatorDoodadWireDesc
754 CARD8 priority; member in struct:_xkbLogoDoodadWireDesc
768 CARD8 priority; member in struct:_xkbAnyDoodadWireDesc
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 163 * @param priority the priority of the marker
168 String message, int severity, int priority) throws CoreException {
172 marker.setAttribute(IMarker.PRIORITY, priority);
  /hardware/broadcom/wlan/bcm4329/src/shared/
bcmutils.c 470 /* Priority dequeue from a specific set of precedences */
912 int priority = 0; local
935 /* DSCP priority gets precedence over 802.1P (vlan tag) */
937 priority = dscp_prio;
940 priority = vlan_prio;
944 * If the DSCP priority is not the same as the VLAN priority,
945 * then overwrite the priority field in the vlan tag, with the
946 * DSCP priority value. This is required for Linux APs because
947 * the VLAN driver on Linux, overwrites the skb->priority fiel
    [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 241 def SetPriority (self, priority):
242 """Set the stream priority"""
243 eas_logger.debug('Call EAS_SetPriority: priority=%d' % priority)
245 result = eas_dll.EAS_SetPriority(self.eas.handle, self.handle, priority)
250 """Get the stream priority."""
252 priority = c_int(0)
254 result = eas_dll.EAS_GetPriority(self.eas.handle, self.handle, byref(priority))
257 eas_logger.debug('EAS_GetPriority: priority=%d' % priority.value)
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.cc 132 // priority. Highest priorities are closest to the front. Older requests are
133 // prioritized over requests of equal priority.
142 while (it != pending_requests->end() && r->priority() >= (*it)->priority())
163 DCHECK_GE(request->priority(), 0);
432 // Search for the highest priority pending request, amongst the groups that
434 // the same priority, the winner is based on group hash ordering (and not
  /external/kernel-headers/original/linux/
pnp.h 115 unsigned short priority; /* priority */ member in struct:pnp_option
379 struct pnp_option * pnp_register_dependent_option(struct pnp_dev *dev, int priority);
425 static inline struct pnp_option * pnp_register_dependent_option(struct pnp_dev *dev, int priority) { return NULL; }
  /external/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 632 int priority = 2; local
635 /* skip priority */
637 priority = atoi(pos);
645 WpaMsg wm(pos, priority);
  /frameworks/base/core/java/android/webkit/
WebSettings.java 223 // Message id for setting priority
224 static final int PRIORITY = 1;
248 case PRIORITY: {
    [all...]
  /system/core/liblog/
logprint.c 160 * returns 1 if this log line should be printed based on its priority
257 // The default level for this is DEBUG if the priority
266 // filter, the default is verbose if the priority is unspecified
357 entry->priority = buf->msg[0];
568 entry->priority = ANDROID_LOG_INFO;
677 priChar = filterPriToChar(entry->priority);
fake_log_device.c 71 /* global minimum priority */
171 * and a letter indicating the minimum priority level we're expected to log.
188 /* global min priority defaults to "info" level */
218 /* default priority, if there's no ":" part; also zero out '*' */
299 * Return a human-readable string for the priority level. Always returns
302 static const char* getPriorityString(int priority)
310 idx = (int) priority - (int) ANDROID_LOG_VERBOSE;
538 * priority (1 byte)
  /external/chromium/net/base/
host_resolver_impl_unittest.cc 50 RequestPriority priority) {
52 info.set_priority(priority);
764 a.priority() == b.priority() &&
    [all...]
  /external/wpa_supplicant/
config.c 1190 { INT(priority) },
1237 * wpa_config_add_prio_network - Add a network to priority lists
1242 * This function is used to add a network block to the priority list of
1254 * Add to an existing priority list if one is available for the
1255 * configured priority level for this network.
1259 if (prev->priority == ssid->priority) {
1267 /* First network for this priority - add a new priority list */
1274 if (nlist[prio]->priority < ssid->priority
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java 130 // Internal type used to keep track of validators & corresponding priority
134 int priority; field in class:ObjectInputStream.InputValidationDesc
    [all...]
  /external/ipsec-tools/src/racoon/
policy.c 388 if (new->spidx.priority < p->spidx.priority) {
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 96 private int loadSound(int resId, int priority) {
97 int id = mSoundPool.load(getApplicationContext(), resId, priority);
198 if (DEBUG) Log.d(LOG_TAG, "Begin priority test");
201 // play a normal priority looping sound
211 // play a low priority sound
215 Log.e(LOG_TAG, "Normal > Low priority test failed");
219 Log.e(LOG_TAG, "Normal > Low priority test passed");
223 // play a high priority sound
227 Log.e(LOG_TAG, "High > Normal priority test failed");
230 Log.e(LOG_TAG, "High > Normal priority test passed")
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
linux_osl.h 305 #define PKTPRIO(skb) (((struct sk_buff*)(skb))->priority)
306 #define PKTSETPRIO(skb, x) (((struct sk_buff*)(skb))->priority = (x))
  /bionic/libc/kernel/common/linux/
pkt_sched.h 314 unsigned char priority; member in struct:tc_cbq_wrropt
  /bionic/libc/kernel/common/linux/sunrpc/
sched.h 148 unsigned char priority; member in struct:rpc_wait_queue
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 280 unsigned char priority; member in struct:tc_cbq_wrropt
  /development/ndk/platforms/android-3/include/linux/sunrpc/
sched.h 148 unsigned char priority; member in struct:rpc_wait_queue
  /external/bison/src/
vcg.h 368 head. priority The positions of the nodes are mainly determined by
370 of edges that pull a node into its position. The priority of an edges
406 int priority;
714 /* priority phase yes replaces the normal pendulum method by a
717 tune phase of the priority method. This phase is also recommended,
727 If the orthogonal layout is used, then the priority phase and
729 on, too, unless priority layout and straight line tuning are
405 int priority; member in struct:edge
    [all...]

Completed in 367 milliseconds

1 2 3 4 5 6 7 8 91011>>