HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 1 - 25 of 2369) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /external/iptables/include/linux/netfilter/
xt_CLASSIFY.h 7 __u32 priority; member in struct:xt_classify_target_info
  /external/smack/src/org/xbill/DNS/
MXRecord.java 24 * @param priority The priority of this MX. Records with lower priority
29 MXRecord(Name name, int dclass, long ttl, int priority, Name target) {
30 super(name, Type.MX, dclass, ttl, priority, "priority",
40 /** Returns the priority of this MX record */
SRVRecord.java 20 private int priority, weight, port; field in class:SRVRecord
32 * @param priority The priority of this SRV. Records with lower priority
35 * priority.
40 SRVRecord(Name name, int dclass, long ttl, int priority,
44 this.priority = checkU16("priority", priority);
52 priority = in.readU16()
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/dns/
SRVRecord.java 27 private int priority; field in class:SRVRecord
34 * @param priority Priority of the target host
35 * @param weight Relative weight for records with same priority
38 public SRVRecord(String fqdn, int port, int priority, int weight) {
45 if (priority < 0 || priority > 65535)
47 "DNS SRV records priority must be a 16-bit unsiged integer (i.e. between 0-65535. Priority was: "
48 + priority);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PriorityParser.java 33 * Parser for Priority header.
48 * @param priority the header to parse
50 public PriorityParser(String priority) {
51 super(priority);
64 * @return SIPHeader (Priority object)
71 Priority priority = new Priority(); local
73 headerName(TokenTypes.PRIORITY);
75 priority.setHeaderName(SIPHeaderNames.PRIORITY)
    [all...]
  /frameworks/volley/tests/src/com/android/volley/
RequestTest.java 21 import com.android.volley.Request.Priority;
34 TestRequest low = new TestRequest(Priority.LOW);
36 TestRequest low2 = new TestRequest(Priority.LOW);
38 TestRequest high = new TestRequest(Priority.HIGH);
40 TestRequest immediate = new TestRequest(Priority.IMMEDIATE);
52 private Priority mPriority = Priority.NORMAL;
53 public TestRequest(Priority priority) {
55 mPriority = priority;
    [all...]
  /external/nist-sip/java/javax/sip/header/
PriorityHeader.java 6 String NAME = "Priority";
14 void setPriority(String priority) throws ParseException;
  /dalvik/vm/os/
os.h 20 * Raises the scheduling priority of the current thread. Returns the
21 * original priority if successful, or INT_MAX on failure.
29 * Sets the current thread scheduling priority. Used to undo the effects
37 * Changes the priority of a system thread to match that of the Thread object.
39 * We map a priority value from 1-10 to Linux "nice" values, where lower
40 * numbers indicate higher priority.
45 * Returns the thread priority for the current thread by querying the system.
  /external/chromium/net/url_request/
url_request_netlog_params.cc 15 RequestPriority priority)
19 priority_(priority) {
27 dict->SetInteger("priority", static_cast<int>(priority_));
  /external/clang/bindings/python/tests/cindex/
test_code_completion.py 31 "{'int', ResultType} | {'test1', TypedText} || Priority: 50 || Availability: Available || Brief comment: Aaa.",
32 "{'void', ResultType} | {'test2', TypedText} | {'(', LeftParen} | {')', RightParen} || Priority: 50 || Availability: Available || Brief comment: Bbb.",
33 "{'return', TypedText} || Priority: 40 || Availability: Available || Brief comment: None"
60 "{'const', TypedText} || Priority: 40 || Availability: Available || Brief comment: None",
61 "{'volatile', TypedText} || Priority: 40 || Availability: Available || Brief comment: None",
62 "{'operator', TypedText} || Priority: 40 || Availability: Available || Brief comment: None",
63 "{'P', TypedText} | {'::', Text} || Priority: 75 || Availability: Available || Brief comment: None",
64 "{'Q', TypedText} | {'::', Text} || Priority: 75 || Availability: Available || Brief comment: None"
70 "{'P', TypedText} | {'::', Text} || Priority: 75 || Availability: Available || Brief comment: None",
71 "{'P &', ResultType} | {'operator=', TypedText} | {'(', LeftParen} | {'const P &', Placeholder} | {')', RightParen} || Priority: 34 || Availability: Available || Brief comment: None"
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Priority.java 35 * the Priority header.
43 public class Priority extends SIPHeader implements PriorityHeader {
65 /** priority field
67 protected String priority; field in class:Priority
71 public Priority() {
80 return priority;
84 * get the priority value.
88 return priority;
92 * Set the priority member
99 + "Priority, setPriority(), the priority parameter is null")
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 18 : msg(_msg), priority(_priority)
24 int getPriority() const { return priority; }
29 int priority; member in class:WpaMsg
  /external/clang/test/Index/
complete-type-factors.m 7 enum Priority {
13 enum Priority func2(int);
15 enum Priority test1(enum Priority priority, enum Color color, int integer) {
18 return priority;
26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority
    [all...]
  /external/clang/test/Frontend/
warning-mapping-2.c 1 // Check that -w has lower priority than -pedantic-errors.
  /external/iptables/extensions/
libxt_CLASSIFY.c 15 "--set-class MAJOR:MINOR Set skb->priority value (always hexadecimal!)\n");
40 if (CLASSIFY_string_to_priority(cb->arg, &clinfo->priority))
46 CLASSIFY_print_class(unsigned int priority, int numeric)
48 printf(" %x:%x", TC_H_MAJ(priority)>>16, TC_H_MIN(priority));
59 CLASSIFY_print_class(clinfo->priority, numeric);
69 TC_H_MAJ(clinfo->priority)>>16, TC_H_MIN(clinfo->priority));
  /frameworks/base/core/java/com/android/internal/os/
AndroidPrintStream.java 28 private final int priority; field in class:AndroidPrintStream
34 * @param priority from {@link android.util.Log}
37 public AndroidPrintStream(int priority, String tag) {
42 this.priority = priority;
47 Log.println(priority, tag, line);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.mm 134 [self setProperty:@"azimuth" value:azimuth priority:@""];
144 [self setProperty:@"background" value:background priority:@""];
154 [self setProperty:@"background-attachment" value:backgroundAttachment priority:@""];
164 [self setProperty:@"background-color" value:backgroundColor priority:@""];
174 [self setProperty:@"background-image" value:backgroundImage priority:@""];
184 [self setProperty:@"background-position" value:backgroundPosition priority:@""];
194 [self setProperty:@"background-repeat" value:backgroundRepeat priority:@""];
204 [self setProperty:@"border" value:border priority:@""];
214 [self setProperty:@"border-collapse" value:borderCollapse priority:@""];
224 [self setProperty:@"border-color" value:borderColor priority:@""]
    [all...]
  /frameworks/base/core/java/android/util/
LogPrinter.java 29 * Create a new Printer that sends to the log with the given priority
32 * @param priority The desired log priority:
40 public LogPrinter(int priority, String tag) {
41 mPriority = priority;
50 public LogPrinter(int priority, String tag, int buffer) {
51 mPriority = priority;
  /external/chromium/base/
process_win.cc 28 DWORD priority = GetPriority();
29 if (priority == 0)
31 return priority == BELOW_NORMAL_PRIORITY_CLASS;
37 DWORD priority = value ? BELOW_NORMAL_PRIORITY_CLASS : NORMAL_PRIORITY_CLASS;
38 return (SetPriorityClass(process_, priority) != 0);
  /external/chromium/net/spdy/
spdy_io_buffer.h 25 // |priority| is the priority of this buffer. Lower numbers are higher
26 // priority.
28 SpdyIOBuffer(IOBuffer* buffer, int size, int priority, SpdyStream* stream);
36 int priority() const { return priority_; } function in class:net::SpdyIOBuffer
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
PriorityThreadFactory.java 24 * A thread factory that creates threads with a given thread priority.
33 * @param priority The thread priority of the threads created by this factory.
36 public PriorityThreadFactory(int priority) {
37 mPriority = priority;

Completed in 2984 milliseconds

1 2 3 4 5 6 7 8 91011>>