Searched refs:proto (Results 1 - 25 of 663) sorted by path

1234567891011>>

/external/android-clat/
H A Dclatd.c389 uint16_t proto = ntohs(tun_header->proto); local
390 if (proto != ETH_P_IP) {
391 logmsg(ANDROID_LOG_WARN, "%s: unknown packet type = 0x%x", __func__, proto);
H A Dclatd_test.cpp446 tun_header.proto = htons(ETH_P_IP);
452 tun_header.proto = htons(ETH_P_IPV6);
475 EXPECT_EQ(expected_proto, new_tun_header.proto) << msg << "Unexpected tun proto\n";
H A Dtranslate.c109 * proto - ethernet protocol id: ETH_P_IP(ipv4) or ETH_P_IPV6(ipv6)
111 void fill_tun_header(struct tun_pi *tun_header, uint16_t proto) { argument
113 tun_header->proto = htons(proto);
H A Dtranslate.h56 void fill_tun_header(struct tun_pi *tun_header, uint16_t proto);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java91 * @param proto a version of the protocol to parse, or
95 public BasicLineParser(ProtocolVersion proto) { argument
96 if (proto == null) {
97 proto = HttpVersion.HTTP_1_1;
99 this.protocol = proto;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_pan.c440 int btpan_tap_send(int tap_fd, const BD_ADDR src, const BD_ADDR dst, UINT16 proto, const char* buf, argument
453 eth_hdr.h_proto = htons(proto);
545 uint16_t proto = ntohs(hdr->h_proto); local
546 if(proto == ETH_P_IP || proto == ETH_P_ARP || proto == ETH_P_IPV6)
548 BTIF_TRACE_DEBUG("unknown proto:%x", proto);
/external/bluetooth/bluedroid/stack/bnep/
H A Dbnep_utils.c1325 UINT16 i, proto; local
1328 proto = protocol;
1329 if (proto == BNEP_802_1_P_PROTOCOL)
1344 BE_STREAM_TO_UINT16 (proto, p_data);
1349 if ((p_bcb->rcvd_prot_filter_start[i] <= proto) &&
1350 (proto <= p_bcb->rcvd_prot_filter_end[i]))
1356 BNEP_TRACE_DEBUG ("Ignoring protocol 0x%x in BNEP data write", proto);
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py325 family, socktype, proto, canonname, sockaddr = addrinfo
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dstandalone.py321 family, socktype, proto, canonname, sockaddr = addrinfo
/external/chromium_org/
H A DGypAndroid.darwin-arm.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-arm.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-arm.mk
H A DGypAndroid.darwin-arm64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-arm64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-arm64.mk
H A DGypAndroid.darwin-mips.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-mips.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-mips.mk
H A DGypAndroid.darwin-mips64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-mips64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-mips64.mk
H A DGypAndroid.darwin-x86.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-x86.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-x86.mk
H A DGypAndroid.darwin-x86_64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.darwin-x86_64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.darwin-x86_64.mk
H A DGypAndroid.linux-arm.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-arm.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-arm.mk
H A DGypAndroid.linux-arm64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-arm64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-arm64.mk
H A DGypAndroid.linux-mips.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-mips.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-mips.mk
H A DGypAndroid.linux-mips64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-mips64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-mips64.mk
H A DGypAndroid.linux-x86.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-x86.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-x86.mk
H A DGypAndroid.linux-x86_64.mk65 include $(LOCAL_PATH)/content/browser/service_worker/proto.target.linux-x86_64.mk
66 include $(LOCAL_PATH)/content/browser/speech/proto/speech_proto.target.linux-x86_64.mk
/external/chromium_org/ash/system/chromeos/power/
H A Dpower_status.cc29 // Updates |proto| to ensure that its fields are consistent.
30 void SanitizeProto(power_manager::PowerSupplyProperties* proto) { argument
31 DCHECK(proto);
33 if (proto->battery_state() ==
35 proto->set_battery_percent(100.0);
37 if (!proto->is_calculating_battery_time()) {
38 const bool on_line_power = proto->external_power() !=
40 if ((on_line_power && proto->battery_time_to_full_sec() < 0) ||
41 (!on_line_power && proto->battery_time_to_empty_sec() < 0))
42 proto
296 SetProtoForTesting( const power_manager::PowerSupplyProperties& proto) argument
302 PowerChanged( const power_manager::PowerSupplyProperties& proto) argument
[all...]
H A Dpower_status.h135 void SetProtoForTesting(const power_manager::PowerSupplyProperties& proto);
144 const power_manager::PowerSupplyProperties& proto) OVERRIDE;
H A Dpower_status_view_unittest.cc39 void UpdatePowerStatus(const power_manager::PowerSupplyProperties& proto) { argument
40 PowerStatus::Get()->SetProtoForTesting(proto);

Completed in 488 milliseconds

1234567891011>>