Searched defs:pd (Results 1 - 25 of 127) sorted by relevance

123456

/external/jcommander/src/main/java/com/beust/jcommander/
H A DIParameterValidator2.java28 * @param pd The description of this parameter
32 void validate(String name, String value, ParameterDescription pd) throws ParameterException; argument
H A DParameterized.java27 public Parameterized(WrappedParameter wp, ParametersDelegate pd, argument
35 m_parametersDelegate = pd;
H A DParameterDescription.java293 public static void validateParameter(ParameterDescription pd, argument
303 instance.validate(name, value, pd);
/external/libpcap/tests/
H A Dreactivatetest.c41 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));
H A Dopentest.c56 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...]
H A Dcapturetest.c50 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,
[all...]
H A Dfiltertest.c194 pcap_t *pd; local
280 pd = pcap_open_dead(dlt, snaplen);
281 if (pd == NULL)
284 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
285 error("%s", pcap_geterr(pd));
302 pcap_close(pd);
H A Dselpolltest.c48 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...]
H A Dvalgrindtest.c218 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...]
/external/llvm/lib/Support/
H A DThreadLocal.cpp31 void **pd = reinterpret_cast<void**>(&data); local
32 *pd = const_cast<void*>(d);
35 void **pd = reinterpret_cast<void**>(&data); local
36 return *pd;
/external/guava/guava-tests/test/com/google/common/base/
H A DFinalizableReferenceQueueClassLoaderUnloadingTest.java75 public boolean implies(ProtectionDomain pd, Permission perm) { argument
/external/clang/test/CodeGenCXX/
H A Dptr-to-datamember.cpp85 double A::* pd = &A::d; member in class:A
95 printf("%d, %f, %f \n", a1.*pa, a1.*pf, a1.*pd);
/external/libpcap/
H A Ddlpisubs.c82 struct pcap_dlpi *pd = p->priv; local
107 *ps = pd->stat;
124 struct pcap_dlpi *pd = p->priv; local
167 pd->stat.ps_drop = sbp->sbh_drops;
178 ++pd->stat.ps_recv;
H A Dpcap-libdlpi.c98 struct pcap_dlpi *pd = p->priv; local
122 pd->dlpi_hd = dh;
134 if ((retv = dlpi_bind(pd->dlpi_hd, DLPI_ANY_SAP, 0)) != DLPI_SUCCESS) {
188 if ((retv = dlpi_info(pd->dlpi_hd, &dlinfo, 0)) != DLPI_SUCCESS) {
199 p->fd = dlpi_fd(pd->dlpi_hd);
250 struct pcap_dlpi *pd = p->priv; local
254 retv = dlpi_promiscon(pd->dlpi_hd, level);
316 struct pcap_dlpi *pd = p->priv; local
342 retv = dlpi_recv(pd->dlpi_hd, NULL, NULL, bufp,
354 pcap_libdlpi_err(dlpi_linkname(pd
368 struct pcap_dlpi *pd = p->priv; local
391 struct pcap_dlpi *pd = p->priv; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_blockd.c42 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, argument
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
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ethread.c156 struct macroblockd_plane *const pd = xd->plane; local
163 pd[j].dqcoeff = ctx->dqcoeff_pbuf[j][0];
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Segment.h59 CJBig2_PatternDict* pd; member in union:CJBig2_Segment::__anon15910
/external/webrtc/webrtc/base/
H A Dbase64.cc28 static const unsigned char pd = 0xFD; // Padding member in namespace:rtc
49 il,pd,il,il,il, 0, 1, 2, 3, 4, // 60 - 69
145 if ((il == qbuf[byte_len]) || (illegal_pads && (pd == qbuf[byte_len]))) {
153 } else if (pd == qbuf[byte_len]) {
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java139 ProtectionDomain pd = new ProtectionDomain(null, null, null, principals);
140 Principal[] got = pd.getPrincipals();
143 assertNotSame(got, pd.getPrincipals());
170 ProtectionDomain pd = new ProtectionDomain(cs, null);
171 policy.setTrackPD(pd);
174 pd.implies(allperm);
187 ProtectionDomain pd = new ProtectionDomain(cs, null, ClassLoader
189 policy.setTrackPD(pd);
192 pd.implies(allperm);
230 ProtectionDomain setTrackPD(ProtectionDomain pd) { argument
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp136 D *pd = 0; local
137 P(dynamic_cast<V&>(*pd));
138 P(dynamic_cast<V*>(pd));
/external/fio/engines/
H A Dposixaio.c96 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 local
233 struct posixaio_data *pd = malloc(sizeof(*pd)); local
[all...]
/external/jdiff/src/jdiff/
H A DRootDocToXML.java225 * @param pd an array of PackageDoc objects
266 PackageDoc[] pd = (PackageDoc[]) pdl.values().toArray(new PackageDoc[0]);
267 for (int i = 0; pd != null && i < pd.length; i++) {
268 String pkgName = pd[i].name();
272 if (!shownElement(pd[i], null))
278 int tagCount = pd[i].tags().length;
288 classList = new LinkedList(Arrays.asList(pd[i].allClasses()));
295 addPkgDocumentation(root, pd[i], 2);
858 public void addPkgDocumentation(RootDoc root, PackageDoc pd, in argument
[all...]
/external/libmicrohttpd/src/testcurl/
H A Dtest_postform.c181 struct curl_httppost *pd; local
196 pd = make_form ();
197 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
215 curl_formfree (pd);
220 curl_formfree (pd);
237 struct curl_httppost *pd; local
252 pd = make_form ();
253 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
271 curl_formfree (pd);
276 curl_formfree (pd);
293 struct curl_httppost *pd; local
359 struct curl_httppost *pd; local
[all...]
/external/libmicrohttpd/src/testzzuf/
H A Dtest_post_form.c174 struct curl_httppost *pd; local
193 pd = make_form ();
194 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
208 curl_formfree (pd);
225 struct curl_httppost *pd; local
244 pd = make_form ();
245 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
259 curl_formfree (pd);
284 struct curl_httppost *pd; local
312 pd
[all...]
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_nci.c58 UINT8 *ps, *pd; local
110 pd = (UINT8 *) (nfc_hal_cb.ncit_cb.p_frag_msg + 1) + nfc_hal_cb.ncit_cb.p_frag_msg->offset + nfc_hal_cb.ncit_cb.p_frag_msg->len;
111 memcpy (pd, ps, p_msg->len);
114 pd = (UINT8 *) (nfc_hal_cb.ncit_cb.p_frag_msg + 1) + nfc_hal_cb.ncit_cb.p_frag_msg->offset + 2;
115 *pd = (UINT8) (nfc_hal_cb.ncit_cb.p_frag_msg->len - NCI_MSG_HDR_SIZE);
734 UINT8 *ps, *pd; local
802 pd = (UINT8 *) (p_buf + 1) + p_buf->offset;
804 memcpy (pd, hdr, NCI_MSG_HDR_SIZE);
805 pd += 2;
806 *pd
[all...]

Completed in 1315 milliseconds

123456