HomeSort by relevance Sort by last modified time
    Searched defs:fcode (Results 1 - 16 of 16) sorted by null

  /external/libpcap/
pcap-enet.c 58 register struct bpf_insn *fcode = fp->bf_insns; local
78 if (bpf_filter(fcode, (char *)ph->packet,
92 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
savefile.c 245 pcap_freecode(&p->fcode);
401 /* Padding only needed for live capture fcode */
472 struct bpf_insn *fcode; local
504 if ((fcode = p->fcode.bf_insns) == NULL ||
505 bpf_filter(fcode, data, h.len, h.caplen)) {
pcap-int.h 243 struct bpf_program fcode; member in struct:pcap
pcap-rpcap.c 1348 struct bpf_program fcode; local
    [all...]
pcap-linux.c 487 static int fix_program(pcap_t *handle, struct sock_fprog *fcode,
490 static int set_kernel_filter(pcap_t *handle, struct sock_fprog *fcode);
2831 struct sock_fprog fcode; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vop.cpp 508 int fcode; local
529 fcode = currVop->fcodeForward;
530 BitstreamPutGT16Bits(bs, 16 + fcode, 1); /* resync_marker P_VOP */
535 fcode = currVop->fcodeForward;
536 if (currVop->fcodeBackward > fcode)
537 fcode = currVop->fcodeBackward;
538 BitstreamPutGT16Bits(bs, 16 + fcode, 1); /* resync_marker B_VOP */
  /external/libpcap/testprogs/
capturetest.c 74 struct bpf_program fcode; local
174 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
177 if (pcap_setfilter(pd, &fcode) < 0)
210 pcap_freecode(&fcode);
filtertest.c 209 struct bpf_program fcode; local
317 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
321 if (!bpf_validate(fcode.bf_insns, fcode.bf_len))
338 bpf_dump(&fcode, dflag);
341 pcap_freecode (&fcode);
selpolltest.c 74 struct bpf_program fcode; local
154 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
156 if (pcap_setfilter(pd, &fcode) < 0)
valgrindtest.c 248 struct bpf_program fcode; local
409 if (pcap_compile(pd, &fcode, cmdbuf, 1, 0) < 0)
411 if (pcap_setfilter(pd, &fcode) < 0)
threadsignaltest.c 188 struct bpf_program fcode; local
264 if (pcap_compile(pd, &fcode, cmdbuf, 1, netmask) < 0)
267 if (pcap_setfilter(pd, &fcode) < 0)
305 pcap_freecode(&fcode);
  /external/ppp/pppd/include/
pcap-int.h 95 struct bpf_program fcode; member in struct:pcap
  /external/deqp/external/openglcts/modules/common/
glcShaderNegativeTests.cpp 176 std::string fcode = tcu::StringTemplate(fragment_source_template).specialize(args); local
179 ShaderProgram program(m_context.getRenderContext(), makeVtxFragSources(vcode.c_str(), fcode.c_str()));
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 146 int fcode; local
171 for (fcode = hsize; fcode < 65536; fcode *= 2)
182 fcode = (c << maxbits) + ent;
185 if (htab[i] == fcode) {
197 if (htab[i] == fcode) {
207 htab[i] = fcode;
  /external/pdfium/third_party/libtiff/
tif_lzw.c 886 register long fcode; local
930 fcode = ((long)c << BITS_MAX) + ent;
940 if (hp->hash == fcode) {
959 if (hp->hash == fcode) {
983 hp->hash = fcode;
    [all...]
  /external/tcpdump/
tcpdump.c 1105 struct bpf_program fcode; local
    [all...]

Completed in 225 milliseconds