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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/netbsd/net/
getservbyport.c 33 getservbyport(int port, const char *proto)
38 if (rs == NULL || proto == NULL) {
48 if ( s->s_port == port && !strcmp( s->s_proto, proto ) )
getservbyname.c 34 getservbyname(const char *name, const char *proto)
39 if (rs == NULL || proto == NULL || name == NULL) {
49 if ( !strcmp( s->s_name, name ) && !strcmp( s->s_proto, proto ) )
getservbyport_r.c 47 getservbyport_r(int port, const char *proto, struct servent *sp,
56 if (proto == NULL || strcmp(s->s_proto, proto) == 0)
  /dalvik/vm/arch/generic/
Hints.cpp 52 u4 dvmPlatformInvokeHints( const DexProto* proto)
  /external/clang/test/Sema/
knr-def-call.c 32 void proto(int);
33 void proto(x) function
39 proto(42.1); // expected-warning{{implicit conversion turns literal floating-point number into integer}}
40 (&proto)(42.1); // expected-warning{{implicit conversion turns literal floating-point number into integer}}
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 51 * {@code google/protobuf/descriptor.proto}.
57 * Describes a {@code .proto} file, including everything defined within.
61 public FileDescriptorProto toProto() { return proto; }
64 public String getName() { return proto.getName(); }
67 * Get the proto package name. This is the package name given by the
68 * {@code package} statement in the {@code .proto} file, which differs
71 public String getPackage() { return proto.getPackage(); }
73 /** Get the {@code FileOptions}, defined in {@code descriptor.proto}. */
74 public FileOptions getOptions() { return proto.getOptions(); }
199 * @param proto The protocol message form of the FileDescriptor
274 FileDescriptorProto proto; local
323 private FileDescriptorProto proto; field in class:Descriptors.FileDescriptor
544 private DescriptorProto proto; field in class:Descriptors.Descriptor
805 private FieldDescriptorProto proto; field in class:Descriptors.FieldDescriptor
1201 private EnumDescriptorProto proto; field in class:Descriptors.EnumDescriptor
1287 private EnumValueDescriptorProto proto; field in class:Descriptors.EnumValueDescriptor
1363 private ServiceDescriptorProto proto; field in class:Descriptors.ServiceDescriptor
1444 private MethodDescriptorProto proto; field in class:Descriptors.MethodDescriptor
1540 private final Message proto; field in class:Descriptors.DescriptorValidationException
    [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 114 proto = unittest_pb2.TestAllTypes(
119 self.assertEqual(24, proto.optional_int32)
120 self.assertEqual(54.321, proto.optional_double)
121 self.assertEqual('optional_string', proto.optional_string)
125 proto = unittest_pb2.TestAllTypes(
131 self.assertEquals([1, 2, 3, 4], list(proto.repeated_int32))
132 self.assertEquals([1.23, 54.321], list(proto.repeated_double))
133 self.assertEquals([True, False, False], list(proto.repeated_bool))
134 self.assertEquals(["optional_string"], list(proto.repeated_string))
138 proto = unittest_pb2.TestAllTypes
    [all...]
  /dalvik/vm/arch/x86/
Hints386ABI.cpp 61 u4 dvmPlatformInvokeHints( const DexProto* proto)
63 const char* sig = dexProtoGetShorty(proto);
  /dalvik/vm/arch/x86-atom/
Hints386ABI.cpp 51 u4 dvmPlatformInvokeHints(const DexProto* proto) {
53 const char* sig = dexProtoGetShorty(proto);
  /development/host/windows/usb/api/
adb_api_private_defines.h 38 AdbInstanceEnumEntry(const AdbInstanceEnumEntry& proto) {
39 Set(proto.device_name().c_str(), proto.class_id(), proto.flags());
54 AdbInstanceEnumEntry& operator=(const AdbInstanceEnumEntry& proto) {
55 Set(proto.device_name().c_str(), proto.class_id(), proto.flags());
  /external/wpa_supplicant/examples/
wpa-psk-tkip.conf 8 proto=WPA
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpa-psk-tkip.conf 8 proto=WPA
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpa-psk-tkip.conf 8 proto=WPA
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
cdefs.h 177 # define __REDIRECT(name, proto, alias) name proto __asm__ (__ASMNAME (#alias))
179 # define __REDIRECT_NTH(name, proto, alias) \
180 name proto __THROW __asm__ (__ASMNAME (#alias))
182 # define __REDIRECT_NTH(name, proto, alias) \
183 name proto __asm__ (__ASMNAME (#alias)) __THROW
191 # define __REDIRECT(name, proto, alias) name proto; \
353 # define __LDBL_REDIR1(name, proto, alias) __REDIRECT (name, proto, alias
    [all...]
  /dalvik/libdex/
DexProto.h 121 * Return the utf-8 encoded descriptor string from the proto of a MethodId.
126 DexProto proto; local
128 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
129 return dexProtoGetMethodDescriptor(&proto, pCache);
134 * proto of a MethodId. The returned pointer must be free()ed by the
140 DexProto proto; local
142 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
143 return dexProtoCopyMethodDescriptor(&proto);
188 int dexProtoCompareToDescriptor(const DexProto* proto, const char* descriptor);
195 int dexProtoCompareToParameterDescriptors(const DexProto* proto,
203 const DexProto* proto; member in struct:DexParameterIterator
    [all...]
  /external/iptables/extensions/
libxt_multiport.c 66 proto_to_name(uint8_t proto)
68 switch (proto) {
85 parse_multi_ports(const char *portstring, uint16_t *ports, const char *proto)
97 ports[i] = xtables_parse_port(cp, proto);
107 const char *proto)
129 multiinfo->ports[i] = xtables_parse_port(cp, proto);
132 multiinfo->ports[++i] = xtables_parse_port(range, proto);
147 const char *proto; local
153 if ((proto = proto_to_name(pnum)) != NULL)
154 return proto;
167 const char *proto; local
213 const char *proto; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_systhread_c.h 28 #include <proto/dos.h>
29 #include <proto/exec.h>
41 #include <proto/powerpc.h>
  /bionic/libc/kernel/common/linux/
if_arcnet.h 40 uint8_t proto; member in struct:arc_rfc1201
49 uint8_t proto; member in struct:arc_rfc1051
56 uint8_t proto; member in struct:arc_eth_encap
64 uint8_t proto; member in struct:arc_cap
  /development/ndk/platforms/android-3/include/linux/
if_arcnet.h 40 uint8_t proto; member in struct:arc_rfc1201
49 uint8_t proto; member in struct:arc_rfc1051
56 uint8_t proto; member in struct:arc_eth_encap
64 uint8_t proto; member in struct:arc_cap
  /external/iproute2/ip/
routel 21 proto=""
40 echo "$network $via $src $proto $scope $dev $table"
44 printf(format,"target","","gateway","source","proto","scope","dev","tbl");
54 proto=$4;
58 printf(format,network,mask,via,src,proto,scope,dev,table);
  /external/kernel-headers/original/linux/
if_arcnet.h 60 uint8_t proto; /* protocol ID field - varies */ member in struct:arc_rfc1201
73 uint8_t proto; /* ARC_P_RFC1051_ARP/RFC1051_IP */ member in struct:arc_rfc1051
85 uint8_t proto; /* Always ARC_P_ETHER */ member in struct:arc_eth_encap
94 uint8_t proto; member in struct:arc_cap
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_arcnet.h 60 uint8_t proto; /* protocol ID field - varies */ member in struct:arc_rfc1201
73 uint8_t proto; /* ARC_P_RFC1051_ARP/RFC1051_IP */ member in struct:arc_rfc1051
85 uint8_t proto; /* Always ARC_P_ETHER */ member in struct:arc_eth_encap
94 uint8_t proto; member in struct:arc_cap
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
if_arcnet.h 40 uint8_t proto; member in struct:arc_rfc1201
49 uint8_t proto; member in struct:arc_rfc1051
56 uint8_t proto; member in struct:arc_eth_encap
64 uint8_t proto; member in struct:arc_cap
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
if_arcnet.h 40 uint8_t proto; member in struct:arc_rfc1201
49 uint8_t proto; member in struct:arc_rfc1051
56 uint8_t proto; member in struct:arc_eth_encap
64 uint8_t proto; member in struct:arc_cap
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
if_arcnet.h 40 uint8_t proto; member in struct:arc_rfc1201
49 uint8_t proto; member in struct:arc_rfc1051
56 uint8_t proto; member in struct:arc_eth_encap
64 uint8_t proto; member in struct:arc_cap

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>