HomeSort by relevance Sort by last modified time
    Searched refs:rq (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/kernel-headers/original/linux/nfsd/
auth.h 15 #define nfsd_luid(rq, uid) ((u32)(uid))
16 #define nfsd_lgid(rq, gid) ((u32)(gid))
17 #define nfsd_ruid(rq, uid) ((u32)(uid))
18 #define nfsd_rgid(rq, gid) ((u32)(gid))
  /external/bluetooth/bluez/lib/
hci.c 1228 struct hci_request rq; local
1237 memset(&rq, 0, sizeof(rq));
1238 rq.ogf = OGF_LINK_CTL;
1239 rq.ocf = OCF_CREATE_CONN;
1240 rq.event = EVT_CONN_COMPLETE;
1241 rq.cparam = &cp;
1242 rq.clen = CREATE_CONN_CP_SIZE;
1243 rq.rparam = &rp;
1244 rq.rlen = EVT_CONN_COMPLETE_SIZE
1262 struct hci_request rq; local
1290 struct hci_request rq; local
1314 struct hci_request rq; local
1335 struct hci_request rq; local
1372 struct hci_request rq; local
1393 struct hci_request rq; local
1425 struct hci_request rq; local
1457 struct hci_request rq; local
1493 struct hci_request rq; local
1522 struct hci_request rq; local
1549 struct hci_request rq; local
1574 struct hci_request rq; local
1600 struct hci_request rq; local
1632 struct hci_request rq; local
1657 struct hci_request rq; local
1680 struct hci_request rq; local
1696 struct hci_request rq; local
1719 struct hci_request rq; local
1734 struct hci_request rq; local
1758 struct hci_request rq; local
1776 struct hci_request rq; local
1794 struct hci_request rq; local
1813 struct hci_request rq; local
1832 struct hci_request rq; local
1859 struct hci_request rq; local
1887 struct hci_request rq; local
1914 struct hci_request rq; local
1941 struct hci_request rq; local
1972 struct hci_request rq; local
2000 struct hci_request rq; local
2024 struct hci_request rq; local
2051 struct hci_request rq; local
2075 struct hci_request rq; local
2102 struct hci_request rq; local
2126 struct hci_request rq; local
2153 struct hci_request rq; local
2179 struct hci_request rq; local
2207 struct hci_request rq; local
2231 struct hci_request rq; local
2258 struct hci_request rq; local
2282 struct hci_request rq; local
2311 struct hci_request rq; local
2339 struct hci_request rq; local
2368 struct hci_request rq; local
2394 struct hci_request rq; local
2422 struct hci_request rq; local
2448 struct hci_request rq; local
2477 struct hci_request rq; local
2504 struct hci_request rq; local
2529 struct hci_request rq; local
2554 struct hci_request rq; local
2581 struct hci_request rq; local
2610 struct hci_request rq; local
2641 struct hci_request rq; local
2673 struct hci_request rq; local
2707 struct hci_request rq; local
    [all...]
  /external/bluetooth/bluez/test/
lmptest.c 50 struct hci_request rq;
58 memset(&rq, 0, sizeof(rq));
59 rq.ogf = OGF_VENDOR_CMD;
60 rq.ocf = OCF_ERICSSON_SEND_LMP;
61 rq.cparam = &cp;
62 rq.clen = ERICSSON_SEND_LMP_CP_SIZE;
63 rq.rparam = NULL;
64 rq.rlen = 0;
66 if (hci_send_req(dd, &rq, 1000) < 0
83 struct hci_request rq; local
    [all...]
bdaddr.c 63 struct hci_request rq; local
69 memset(&rq, 0, sizeof(rq));
70 rq.ogf = OGF_VENDOR_CMD;
71 rq.ocf = OCF_ERICSSON_WRITE_BD_ADDR;
72 rq.cparam = &cp;
73 rq.clen = ERICSSON_WRITE_BD_ADDR_CP_SIZE;
74 rq.rparam = NULL;
75 rq.rlen = 0;
77 if (hci_send_req(dd, &rq, 1000) < 0
93 struct hci_request rq; local
123 struct hci_request rq; local
173 struct hci_request rq; local
205 struct hci_request rq; local
233 struct hci_request rq; local
261 struct hci_request rq; local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 49 rq.wait(1000);
52 synchronized (rq) {
56 SoftReference sr = new SoftReference(integer, rq);
58 rq.notify();
63 ReferenceQueue rq; field in class:ReferenceQueueTest
81 SoftReference sr = new SoftReference(b, rq);
82 WeakReference wr = new WeakReference(obj, rq);
83 PhantomReference pr = new PhantomReference(str, rq);
84 assertNull(rq.poll());
90 assertNull("Remove failed.", rq.poll().get())
268 ReferenceQueue rq = new ReferenceQueue(); local
    [all...]
PhantomReferenceTest.java 50 ReferenceQueue rq = new ReferenceQueue(); local
52 PhantomReference pr = new PhantomReference(bool, rq);
83 final ReferenceQueue rq = new ReferenceQueue(); local
91 tprs[0] = new TestPhantomReference(obj, rq);
92 tprs[1] = new TestPhantomReference(obj, rq);
93 tprs[2] = new TestPhantomReference(obj, rq);
94 tprs[3] = new TestPhantomReference(obj, rq);
111 Reference r = rq.remove(100L);
137 ReferenceQueue rq = new ReferenceQueue(); local
140 PhantomReference pr = new PhantomReference(bool, rq);
    [all...]
ReferenceTest.java 139 ReferenceQueue rq = new ReferenceQueue(); local
141 Reference ref = new SoftReference(obj, rq);
144 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
148 && (rq.poll() == null));
150 rq = new ReferenceQueue();
153 ref = new WeakReference(obj, rq);
156 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
160 && (rq.poll() == null));
162 ref = new PhantomReference(obj, rq);
165 assertNull("Not properly enqueued3.", rq.poll().get())
196 final ReferenceQueue rq = new ReferenceQueue(); local
287 final ReferenceQueue rq = new ReferenceQueue(); local
370 ReferenceQueue rq = new ReferenceQueue(); local
    [all...]
SoftReferenceTest.java 51 ReferenceQueue rq = new ReferenceQueue(); local
54 SoftReference sr = new SoftReference(bool, rq);
125 final ReferenceQueue rq = new ReferenceQueue(); local
130 r = new SoftReference(testObj, rq);
159 ref = rq.poll();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/configurations/
RegionQualifierTest.java 26 private RegionQualifier rq; field in class:RegionQualifierTest
33 rq = new RegionQualifier();
40 rq = null;
45 assertEquals(true, rq.checkAndSet("rUS", config));//$NON-NLS-1$
52 assertEquals(false, rq.checkAndSet("", config));//$NON-NLS-1$
53 assertEquals(false, rq.checkAndSet("rus", config));//$NON-NLS-1$
54 assertEquals(false, rq.checkAndSet("rUSA", config));//$NON-NLS-1$
55 assertEquals(false, rq.checkAndSet("abc", config));//$NON-NLS-1$
  /bionic/libc/kernel/common/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
elevator.h 107 #define rq_end_sector(rq) ((rq)->sector + (rq)->nr_sectors)
  /development/ndk/platforms/android-3/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
elevator.h 107 #define rq_end_sector(rq) ((rq)->sector + (rq)->nr_sectors)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
blkdev.h 287 struct request_list rq; member in struct:request_queue
406 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
407 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
408 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
409 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
411 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /external/bluetooth/bluez/tools/
csr_hci.c 90 struct hci_request rq; local
120 memset(&rq, 0, sizeof(rq));
121 rq.ogf = OGF_VENDOR_CMD;
122 rq.ocf = 0x00;
123 rq.event = EVT_VENDOR;
124 rq.cparam = cp;
125 rq.clen = (size * 2) + 1;
126 rq.rparam = rp;
127 rq.rlen = sizeof(rp)
    [all...]
csr.c 2361 struct hci_request rq; local
2407 struct hci_request rq; local
2446 struct hci_request rq; local
2487 struct hci_request rq; local
2527 struct hci_request rq; local
2569 struct hci_request rq; local
2611 struct hci_request rq; local
    [all...]
hciconfig.c 1190 struct hci_request rq; local
1199 memset(&rq, 0, sizeof(rq));
1210 rq.ogf = OGF_HOST_CTL;
1211 rq.ocf = OCF_WRITE_INQ_ACTIVITY;
1212 rq.cparam = &cp;
1213 rq.clen = WRITE_INQ_ACTIVITY_CP_SIZE;
1224 if (hci_send_req(s, &rq, 2000) < 0) {
1233 rq.ogf = OGF_HOST_CTL;
1234 rq.ocf = OCF_READ_INQ_ACTIVITY
1259 struct hci_request rq; local
1328 struct hci_request rq; local
1458 struct hci_request rq; local
1503 struct hci_request rq; local
    [all...]
  /external/kernel-headers/original/linux/
blkdev.h 328 struct request_list rq; member in struct:request_queue
493 #define blk_fs_request(rq) ((rq)->flags & REQ_CMD)
494 #define blk_pc_request(rq) ((rq)->flags & REQ_BLOCK_PC)
495 #define blk_noretry_request(rq) ((rq)->flags & REQ_FAILFAST)
496 #define blk_rq_started(rq) ((rq)->flags & REQ_STARTED)
498 #define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq)
    [all...]
  /external/bluetooth/hcidump/src/
bpasniff.c 60 struct hci_request rq; local
64 memset(&rq, 0, sizeof(rq));
65 rq.ogf = OGF_VENDOR_CMD;
66 rq.ocf = 0x000e;
67 rq.cparam = req;
68 rq.clen = sizeof(req);
69 rq.rparam = &buf;
70 rq.rlen = sizeof(buf);
72 if (hci_send_req(dd, &rq, 1000) < 0
88 struct hci_request rq; local
113 struct hci_request rq; local
    [all...]
  /external/kernel-headers/original/linux/sunrpc/
svcauth.h 98 int (*accept)(struct svc_rqst *rq, u32 *authp);
99 int (*release)(struct svc_rqst *rq);
101 int (*set_client)(struct svc_rqst *rq);

Completed in 460 milliseconds

1 2 3