HomeSort by relevance Sort by last modified time
    Searched refs:proto (Results 76 - 100 of 404) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/amigaos/
SDL_ahiaudio.h 30 #include <proto/exec.h>
  /external/tcpdump/
print-vjc.c 80 * We therefore leave "proto" - which is the PPP protocol type - in place,
85 vjc_print(register const char *bp, u_short proto _U_)
print-ppp.c 409 static void handle_ctrl_proto (u_int proto,const u_char *p, int length);
419 static void handle_ppp (u_int proto, const u_char *p, int length);
424 handle_ctrl_proto(u_int proto, const u_char *pptr, int length)
434 typestr = tok2str(ppptype2str, "unknown ctrl-proto (0x%04x)", proto);
484 switch (proto) {
647 printf("%s", tok2str(ppptype2str,"Unknown Auth Proto (0x04x)",EXTRACT_16BITS(p+2)));
1270 int i, proto; local
1399 u_int proto,ppp_header; local
1537 u_int proto; local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /external/expat/amiga/
stdlib.c 26 #include <proto/exec.h>
27 #include <proto/utility.h>
  /external/webkit/JavaScriptCore/runtime/
JSActivation.h 69 static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); }
JSStaticScopeObject.h 60 static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); }
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
15.11.7.6-001.js 59 var proto = F.prototype;
63 if (F[prop] === proto)
  /external/iptables/extensions/
libip6t_policy.c 36 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
81 .name = "proto",
259 if (e->match.proto)
261 "policy match: double --proto option");
263 e->proto = parse_protocol(argv[optind-1]);
264 if (e->proto != IPPROTO_AH && e->proto != IPPROTO_ESP &&
265 e->proto != IPPROTO_COMP)
268 e->match.proto = 1
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxvideo.h 34 #include <proto/exec.h>
35 #include <proto/cybergraphics.h>
36 #include <proto/graphics.h>
37 #include <proto/intuition.h>
38 #include <proto/console.h>
  /external/protobuf/python/google/protobuf/
descriptor.py 41 """Descriptors essentially contain exactly the information found in a .proto
141 def CopyToProto(self, proto):
142 """Copies this to the matching proto in descriptor_pb2.
145 proto: An empty proto instance from descriptor_pb2.
153 proto.ParseFromString(self.file.serialized_pb[
256 def CopyToProto(self, proto):
260 proto: An empty descriptor_pb2.DescriptorProto.
263 super(Descriptor, self).CopyToProto(proto)
279 """Descriptor for a single field in a .proto file
    [all...]
  /external/bluetooth/hcidump/parser/
ppp.c 77 static inline char *proto2str(uint16_t proto)
79 switch (proto) {
105 uint16_t fcs, proto; local
122 proto = get_u16(frm);
124 proto = get_u8(frm);
127 printf("PPP: %s (0x%04x): len %d\n", proto2str(proto), proto, frm->len);
tcpip.c 86 uint8_t proto;
91 proto = ip->ip_p;
104 proto = ip6->ip6_nxt;
126 switch (proto) {
  /dalvik/vm/oo/
Resolve.c 205 DexProto proto; local
206 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId);
215 resMethod = dvmFindDirectMethod(resClass, name, &proto);
217 resMethod = dvmFindDirectMethodHier(resClass, name, &proto);
219 resMethod = dvmFindVirtualMethodHier(resClass, name, &proto);
336 DexProto proto; local
337 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId);
341 resMethod = dvmFindVirtualMethod(resClass, methodName, &proto);
346 methodName, &proto);
  /external/qemu/distrib/sdl-1.2.12/src/joystick/amigaos/
SDL_sysjoystick.c 30 #include <proto/exec.h>
31 #include <proto/lowlevel.h>
32 #include <proto/graphics.h>
  /external/bluetooth/bluez/audio/
manager.c 237 sdp_list_t *aproto, *proto[2]; local
260 proto[0] = sdp_list_append(0, &l2cap_uuid);
261 apseq = sdp_list_append(0, proto[0]);
264 proto[1] = sdp_list_append(0, &rfcomm_uuid);
266 proto[1] = sdp_list_append(proto[1], channel);
267 apseq = sdp_list_append(apseq, proto[1]);
275 sdp_list_free(proto[0], 0);
276 sdp_list_free(proto[1], 0);
293 sdp_list_t *aproto, *proto[2] local
348 sdp_list_t *aproto, *proto[2]; local
    [all...]
  /external/expat/examples/
elements.c 12 #include <proto/expat.h>
  /external/iproute2/include/
rt_names.h 17 const char *inet_proto_n2a(int proto, char *buf, int len);
  /external/iproute2/ip/
xfrm.h 120 int xfrm_xfrmproto_is_ipsec(__u8 proto);
121 int xfrm_xfrmproto_is_ro(__u8 proto);
124 const char *strxf_xfrmproto(__u8 proto);
129 const char *strxf_proto(__u8 proto);
  /external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
SDL_systimer.c 34 #include <proto/dos.h>
40 #include <proto/dos.h>
41 #include <proto/exec.h>
42 #include <proto/graphics.h>

Completed in 1260 milliseconds

1 2 34 5 6 7 8 91011>>