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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/net/
fd_poll_nacl.go 17 func (pd *pollDesc) Init(fd *netFD) error { pd.fd = fd; return nil }
19 func (pd *pollDesc) Close() {}
21 func (pd *pollDesc) Evict() {
22 pd.closing = true
23 if pd.fd != nil {
24 syscall.StopIO(pd.fd.sysfd)
28 func (pd *pollDesc) Prepare(mode int) error {
29 if pd.closing {
35 func (pd *pollDesc) PrepareRead() error { return pd.Prepare('r')
    [all...]
fd_poll_runtime.go 33 func (pd *pollDesc) Init(fd *netFD) error {
39 pd.runtimeCtx = ctx
43 func (pd *pollDesc) Close() {
44 if pd.runtimeCtx == 0 {
47 runtime_pollClose(pd.runtimeCtx)
48 pd.runtimeCtx = 0
52 func (pd *pollDesc) Evict() {
53 if pd.runtimeCtx == 0 {
56 runtime_pollUnblock(pd.runtimeCtx)
59 func (pd *pollDesc) Prepare(mode int) error
    [all...]
  /prebuilts/go/linux-x86/src/net/
fd_poll_nacl.go 17 func (pd *pollDesc) Init(fd *netFD) error { pd.fd = fd; return nil }
19 func (pd *pollDesc) Close() {}
21 func (pd *pollDesc) Evict() {
22 pd.closing = true
23 if pd.fd != nil {
24 syscall.StopIO(pd.fd.sysfd)
28 func (pd *pollDesc) Prepare(mode int) error {
29 if pd.closing {
35 func (pd *pollDesc) PrepareRead() error { return pd.Prepare('r')
    [all...]
fd_poll_runtime.go 33 func (pd *pollDesc) Init(fd *netFD) error {
39 pd.runtimeCtx = ctx
43 func (pd *pollDesc) Close() {
44 if pd.runtimeCtx == 0 {
47 runtime_pollClose(pd.runtimeCtx)
48 pd.runtimeCtx = 0
52 func (pd *pollDesc) Evict() {
53 if pd.runtimeCtx == 0 {
56 runtime_pollUnblock(pd.runtimeCtx)
59 func (pd *pollDesc) Prepare(mode int) error
    [all...]
  /external/libpcap/tests/
reactivatetest.c 41 pcap_t *pd; local
44 pd = pcap_open_live("lo0", 65535, 0, 1000, ebuf);
45 if (pd == NULL) {
46 pd = pcap_open_live("lo", 65535, 0, 1000, ebuf);
47 if (pd == NULL) {
53 status = pcap_activate(pd);
59 pcap_geterr(pd));
capturetest.c 50 static pcap_t *pd; variable
125 pd = pcap_create(device, ebuf);
126 if (pd == NULL)
128 status = pcap_set_snaplen(pd, 65535);
133 status = pcap_set_immediate_mode(pd, 1);
138 status = pcap_set_timeout(pd, timeout);
142 status = pcap_activate(pd);
148 pcap_statustostr(status), pcap_geterr(pd));
155 pcap_statustostr(status), pcap_geterr(pd));
164 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0
    [all...]
opentest.c 56 pcap_t *pd; local
117 pd = pcap_create(device, ebuf);
118 if (pd == NULL)
120 status = pcap_set_snaplen(pd, snaplen);
125 status = pcap_set_promisc(pd, 1);
131 status = pcap_set_rfmon(pd, 1);
136 status = pcap_set_timeout(pd, 1000);
141 status = pcap_set_buffer_size(pd, bufsize);
146 status = pcap_activate(pd);
152 pcap_statustostr(status), pcap_geterr(pd));
    [all...]
valgrindtest.c 218 pcap_t *pd; local
302 pd = pcap_create(device, ebuf);
303 if (pd == NULL)
305 status = pcap_set_snaplen(pd, 65535);
309 status = pcap_set_promisc(pd, 1);
314 status = pcap_set_rfmon(pd, 1);
319 status = pcap_set_timeout(pd, 1000);
323 status = pcap_activate(pd);
329 pcap_statustostr(status), pcap_geterr(pd));
336 pcap_statustostr(status), pcap_geterr(pd));
    [all...]
selpolltest.c 48 static pcap_t *pd; variable
121 pd = pcap_open_live(device, 65535, 0, 1000, ebuf);
122 if (pd == NULL)
133 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
134 error("%s", pcap_geterr(pd));
136 if (pcap_setfilter(pd, &fcode) < 0)
137 error("%s", pcap_geterr(pd));
138 if (pcap_get_selectable_fd(pd) == -1)
141 if (pcap_setnonblock(pd, 1, ebuf) == -1)
144 selectable_fd = pcap_get_selectable_fd(pd);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ParticipantData.java 124 final ParticipantData pd = new ParticipantData(); local
125 pd.mParticipantId = cursor.getString(ParticipantsQuery.INDEX_ID);
126 pd.mSubId = cursor.getInt(ParticipantsQuery.INDEX_SUB_ID);
127 pd.mSlotId = cursor.getInt(ParticipantsQuery.INDEX_SIM_SLOT_ID);
128 pd.mNormalizedDestination = cursor.getString(
130 pd.mSendDestination = cursor.getString(ParticipantsQuery.INDEX_SEND_DESTINATION);
131 pd.mDisplayDestination = cursor.getString(ParticipantsQuery.INDEX_DISPLAY_DESTINATION);
132 pd.mContactDestination = cursor.getString(ParticipantsQuery.INDEX_CONTACT_DESTINATION);
133 pd.mFullName = cursor.getString(ParticipantsQuery.INDEX_FULL_NAME);
134 pd.mFirstName = cursor.getString(ParticipantsQuery.INDEX_FIRST_NAME)
168 final ParticipantData pd = new ParticipantData(); local
202 final ParticipantData pd = new ParticipantData(); local
230 final ParticipantData pd = getFromRawPhone(phoneNumber); local
253 final ParticipantData pd = getFromRawPhone(phoneNumber); local
266 final ParticipantData pd = new ParticipantData(); local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
netpoll.go 14 // func netpollopen(fd uintptr, pd *pollDesc) int32 // to arm edge-triggered notifications
15 // and associate fd with pd.
16 // An implementation must call the following function to denote that the pd is ready.
17 // func netpollready(gpp **g, pd *pollDesc, mode int32)
89 pd := pollcache.alloc()
90 lock(&pd.lock)
91 if pd.wg != 0 && pd.wg != pdReady {
94 if pd.rg != 0 && pd.rg != pdReady
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
netpoll.go 14 // func netpollopen(fd uintptr, pd *pollDesc) int32 // to arm edge-triggered notifications
15 // and associate fd with pd.
16 // An implementation must call the following function to denote that the pd is ready.
17 // func netpollready(gpp **g, pd *pollDesc, mode int32)
89 pd := pollcache.alloc()
90 lock(&pd.lock)
91 if pd.wg != 0 && pd.wg != pdReady {
94 if pd.rg != 0 && pd.rg != pdReady
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p7.cpp 8 template<double* pd> class Y; //OK
  /external/jcommander/src/main/java/com/beust/jcommander/
IParameterValidator2.java 28 * @param pd The description of this parameter
32 void validate(String name, String value, ParameterDescription pd) throws ParameterException;
  /external/llvm/lib/Support/
ThreadLocal.cpp 31 void **pd = reinterpret_cast<void**>(&data); local
32 *pd = const_cast<void*>(d);
35 void **pd = reinterpret_cast<void**>(&data); local
36 return *pd;
  /libcore/ojluni/src/main/java/sun/misc/
JavaSecurityProtectionDomainAccess.java 32 void put(ProtectionDomain pd, PermissionCollection pc);
33 PermissionCollection get(ProtectionDomain pd);
  /external/autotest/server/site_tests/firmware_PDConnect/
firmware_PDConnect.py 15 Servo based USB PD connect/disconnect test. This test is written
40 """Verify current pd state matches the expected value.
54 pd_state = self.pd.get_pd_state(self.port)
67 # create objects for pd utilities
68 self.pd = pd_console.PDConsoleUtils(self.usbpd)
70 # Make sure PD support exists in the UART console
71 if self.pd.verify_pd_console() == False:
72 raise error.TestFail("pd command not present on console!")
75 self.pd.set_pd_dualrole('on')
78 # Type C connection (PD contract) should exist at this poin
    [all...]
  /libcore/ojluni/src/main/java/java/security/
SecureClassLoader.java 202 ProtectionDomain pd = null;
204 pd = pdcache.get(cs);
205 if (pd == null) {
207 pd = new ProtectionDomain(cs, perms, this, null);
208 pdcache.put(cs, pd);
210 debug.println(" getPermissions "+ pd);
215 return pd;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p5-cxx0x.cpp 22 class PD {
24 ~PD(); // expected-note 5{{here}}
33 PD pd();
37 decltype(pd()) s; // ok
38 decltype(pd())::n n; // ok
45 pd(), // expected-error {{private destructor}}
46 pd()) pd1; // expected-error {{private destructor}}
52 pd(), // expected-error {{temporary of type 'PD' has private destructor}
    [all...]
  /external/fio/engines/
posixaio.c 96 struct posixaio_data *pd = td->io_ops->data; local
130 pd->queued--;
131 pd->aio_events[r++] = io_u;
164 struct posixaio_data *pd = td->io_ops->data; local
166 return pd->aio_events[event];
172 struct posixaio_data *pd = td->io_ops->data; local
183 if (pd->queued)
192 if (pd->queued)
217 pd->queued++;
223 struct posixaio_data *pd = td->io_ops->data local
233 struct posixaio_data *pd = malloc(sizeof(*pd)); local
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh18.cpp 22 class pD : private virtual VB {
25 pD(int i1, int i2) : VB(i2) { j = i1; }
33 pD pd(3621, 9527);
35 VB *pvb = &pd.vb();
53 // printf("Throwing D at %d (VB at %d)\n", &pd, pvb);
54 throw pd;
  /ndk/tests/device/test-stlport_static-exception/jni/
eh18.cpp 22 class pD : private virtual VB {
25 pD(int i1, int i2) : VB(i2) { j = i1; }
33 pD pd(3621, 9527);
35 VB *pvb = &pd.vb();
53 // printf("Throwing D at %d (VB at %d)\n", &pd, pvb);
54 throw pd;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips16-1.d 4 #objdump: -pd
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
DomainCombinerTest.java 56 ProtectionDomain pd; local
60 pd = new ProtectionDomain(executionDomains[0]
63 pd = new ProtectionDomain(parentDomains[0].getCodeSource(),
66 return new ProtectionDomain[] { pd };
  /external/libvpx/libvpx/vp9/common/
vp9_blockd.c 42 const struct macroblockd_plane *const pd = &xd->plane[plane]; local
47 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi, pd)
49 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
59 xd->mb_to_right_edge >> (5 + pd->subsampling_x));
61 xd->mb_to_bottom_edge >> (5 + pd->subsampling_y));
86 void vp9_set_contexts(const MACROBLOCKD *xd, struct macroblockd_plane *pd,
89 ENTROPY_CONTEXT *const a = pd->above_context + aoff;
90 ENTROPY_CONTEXT *const l = pd->left_context + loff;
97 (xd->mb_to_right_edge >> (5 + pd->subsampling_x));
114 (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y))
    [all...]

Completed in 568 milliseconds

1 2 3 4 5 6 7 8 91011>>