HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 326 - 350 of 2282) sorted by null

<<11121314151617181920>>

  /system/bt/binder/android/bluetooth/
IBluetoothHidDeviceCallback.aidl 27 void onSetProtocol(in BluetoothDevice device, in byte protocol);
  /system/bt/bta/include/
bta_pan_co.h 138 uint16_t protocol, uint8_t* p_data,
156 uint16_t protocol, BT_HDR* p_buf, bool ext,
179 * Description protocol filter indication from peer device
  /system/bt/btif/include/
btif_pan_internal.h 67 uint16_t protocol; member in struct:__anon1733
102 uint16_t protocol, const char* buff, uint16_t size, bool ext,
  /system/core/fastboot/
socket.h 31 // interface that enforces the fastboot protocol.
49 enum class Protocol { kTcp, kUdp };
58 static std::unique_ptr<Socket> NewClient(Protocol protocol, const std::string& hostname,
65 static std::unique_ptr<Socket> NewServer(Protocol protocol, int port);
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 276 pckt->proto = iph->protocol;
344 __u8 protocol; local
355 protocol = ip6h->nexthdr;
356 pckt.proto = protocol;
359 if (protocol == IPPROTO_FRAGMENT) {
361 } else if (protocol == IPPROTO_ICMPV6) {
377 protocol = iph->protocol;
378 pckt.proto = protocol;
384 if (protocol == IPPROTO_ICMP)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
RealConnection.java 25 import com.squareup.okhttp.Protocol;
79 private Protocol protocol; field in class:RealConnection
94 if (protocol != null) throw new IllegalStateException("already connected");
107 while (protocol == null) {
121 protocol = null;
151 protocol = Protocol.HTTP_1_1;
155 if (protocol == Protocol.SPDY_3 || protocol == Protocol.HTTP_2)
    [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCDataChannel.mm 113 - (NSString*)protocol {
114 return NSStringFromStdString(_dataChannelInit.protocol);
117 - (void)setProtocol:(NSString*)protocol {
118 _dataChannelInit.protocol = StdStringFromNSString(protocol);
219 - (NSString*)protocol {
220 return NSStringFromStdString(_dataChannel->protocol());
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 55 // The protocol
78 Protocol protocol = new Protocol(); local
79 protocol.setProtocolName(protocolName.getTokenValue());
80 protocol.setProtocolVersion(protocolVersion.getTokenValue());
81 protocol.setTransport(transport.getTokenValue());
82 v.setSentProtocol(protocol);
  /hardware/qcom/gps/msm8909w_3100/android/
GnssConfiguration.cpp 147 Return<bool> GnssConfiguration::setGlonassPositioningProtocol(uint8_t protocol) {
158 if (protocol & (1<<0)) {
161 if (protocol & (1<<1)) {
164 if (protocol & (1<<2)) {
167 if (protocol & (1<<3)) {
  /hardware/qcom/gps/msm8998/android/
GnssConfiguration.cpp 147 Return<bool> GnssConfiguration::setGlonassPositioningProtocol(uint8_t protocol) {
158 if (protocol & (1<<0)) {
161 if (protocol & (1<<1)) {
164 if (protocol & (1<<2)) {
167 if (protocol & (1<<3)) {
  /system/bt/btif/co/
bta_pan_co.cc 158 uint16_t protocol; local
176 p_buf = bta_pan_ci_readbuf(handle, src, dst, &protocol, &ext, &forward);
187 btpan_tap_send(btpan_cb.tap_fd, src, dst, protocol,
230 UNUSED_ATTR uint16_t protocol,
253 UNUSED_ATTR uint16_t protocol,
285 * Description protocol filter indication from peer device
  /external/v8/src/inspector/
v8-runtime-agent-impl.cc 36 #include "src/inspector/protocol/Protocol.h"
57 using protocol::Runtime::RemoteObject;
116 std::unique_ptr<protocol::Runtime::RemoteObject> wrappedValue(
120 std::move(wrappedValue), Maybe<protocol::Runtime::ExceptionDetails>());
133 std::unique_ptr<protocol::Runtime::RemoteObject> wrappedValue(
139 std::unique_ptr<protocol::Runtime::ExceptionDetails> exceptionDetails =
140 protocol::Runtime::ExceptionDetails::create()
185 std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject(
194 std::unique_ptr<protocol::Runtime::RemoteObject> wrappedValue
    [all...]
injected-script.cc 36 #include "src/inspector/protocol/Protocol.h"
51 using protocol::Array;
52 using protocol::Runtime::PropertyDescriptor;
53 using protocol::Runtime::InternalPropertyDescriptor;
54 using protocol::Runtime::RemoteObject;
55 using protocol::Maybe;
126 Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) {
148 std::unique_ptr<protocol::Value> protocolValue;
151 protocol::ErrorSupport errors
    [all...]
  /external/python/cpython3/Lib/asyncio/
subprocess.py 60 protocol=self,
108 def __init__(self, transport, protocol, loop):
110 self._protocol = protocol
112 self.stdin = protocol.stdin
113 self.stdout = protocol.stdout
114 self.stderr = protocol.stderr
207 transport, protocol = yield from loop.subprocess_shell(
211 return Process(transport, protocol, loop)
221 transport, protocol = yield from loop.subprocess_exec(
226 return Process(transport, protocol, loop
    [all...]
proactor_events.py 25 def __init__(self, loop, sock, protocol, waiter=None,
30 self._protocol = protocol
69 def set_protocol(self, protocol):
70 self._protocol = protocol
108 'protocol': self._protocol,
155 def __init__(self, loop, sock, protocol, waiter=None,
157 super().__init__(loop, sock, protocol, waiter, extra, server)
284 # protocol to resume writing if it was paused. Note that
287 # protocol to be paused again).
391 def _make_socket_transport(self, sock, protocol, waiter=None
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/callpending/
CallPendingActivity.java 36 import com.android.incallui.incall.protocol.ContactPhotoType;
37 import com.android.incallui.incall.protocol.InCallButtonIds;
38 import com.android.incallui.incall.protocol.InCallButtonUi;
39 import com.android.incallui.incall.protocol.InCallButtonUiDelegate;
40 import com.android.incallui.incall.protocol.InCallButtonUiDelegateFactory;
41 import com.android.incallui.incall.protocol.InCallScreen;
42 import com.android.incallui.incall.protocol.InCallScreenDelegate;
43 import com.android.incallui.incall.protocol.InCallScreenDelegateFactory;
44 import com.android.incallui.incall.protocol.PrimaryCallState;
45 import com.android.incallui.incall.protocol.PrimaryInfo
    [all...]
  /external/syslinux/core/lwip/src/netif/ppp/
auth.c 422 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) {
425 if (protp->protocol < 0xC000 && protp->close != NULL) {
459 if (protp->protocol != PPP_LCP && protp->enabled_flag && protp->lowerup != NULL) {
552 if (protp->protocol < 0xC000 && protp->enabled_flag && protp->open != NULL) {
554 if (protp->protocol != PPP_CCP) {
568 * The peer has failed to authenticate himself using `protocol'.
571 auth_peer_fail(int unit, u16_t protocol)
573 LWIP_UNUSED_ARG(protocol);
575 AUTHDEBUG(LOG_INFO, ("auth_peer_fail: %d proto=%X\n", unit, protocol));
585 * The peer has been successfully authenticated using `protocol'
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/rtt/impl/
RttChatFragment.java 52 import com.android.incallui.incall.protocol.InCallButtonUi;
53 import com.android.incallui.incall.protocol.InCallButtonUiDelegate;
54 import com.android.incallui.incall.protocol.InCallButtonUiDelegateFactory;
55 import com.android.incallui.incall.protocol.InCallScreen;
56 import com.android.incallui.incall.protocol.InCallScreenDelegate;
57 import com.android.incallui.incall.protocol.InCallScreenDelegateFactory;
58 import com.android.incallui.incall.protocol.PrimaryCallState;
59 import com.android.incallui.incall.protocol.PrimaryInfo;
60 import com.android.incallui.incall.protocol.SecondaryInfo;
62 import com.android.incallui.rtt.protocol.Constants
    [all...]
  /system/bt/stack/pan/
pan_main.cc 373 * protocol - Network protocol of the Eth packet
383 const RawAddress& dst, uint16_t protocol, uint8_t* p_data,
421 BNEP_Write(pan_cb.pcb[i].handle, dst, p_data, len, protocol, &src, ext);
426 (*pan_cb.pan_data_ind_cb)(pcb->handle, src, dst, protocol, p_data, len,
437 BNEP_Write(pan_cb.pcb[i].handle, dst, p_data, len, protocol, &src, ext);
450 (*pan_cb.pan_data_ind_cb)(pcb->handle, src, dst, protocol, p_data, len, ext,
468 * protocol - Network protocol of the Eth packet
477 const RawAddress& dst, uint16_t protocol,
    [all...]
  /external/webrtc/webrtc/p2p/base/
candidate.h 44 const std::string& protocol,
54 protocol_(protocol),
70 const std::string & protocol() const { return protocol_; } function in class:cricket::Candidate
71 void set_protocol(const std::string & protocol) { protocol_ = protocol; }
73 // The protocol used to talk to relay.
75 void set_relay_protocol(const std::string& protocol) {
76 relay_protocol_ = protocol;
  /external/conscrypt/common/src/main/java/org/conscrypt/
SSLUtils.java 351 static byte[] toProtocolBytes(String protocol) {
352 if (protocol == null) {
355 return protocol.getBytes(US_ASCII);
360 * @param protocols the encoded protocol list
375 "Protocol has invalid length (" + protocolLength + " at position " + i
401 * @return the encoded form of the protocol list.
417 String protocol = protocols[i]; local
418 if (protocol == null) {
419 throw new IllegalArgumentException("protocol[" + i + "] is null");
427 "protocol[" + i + "] has invalid length: " + protocolLength)
436 String protocol = protocols[i]; local
    [all...]
SessionSnapshot.java 40 private final String protocol; field in class:SessionSnapshot
53 protocol = session.getProtocol();
164 return protocol;
  /external/python/cpython3/Lib/test/
test_shelve.py 52 s = shelve.Shelf(d1, protocol=2, writeback=False)
66 s = shelve.open(self.fn, protocol=0)
74 s = shelve.open(self.fn, protocol=1)
82 s = shelve.open(self.fn, protocol=2)
91 s = shelve.Shelf(d1, protocol=0)
96 s = shelve.Shelf(d2, protocol=1)
107 s = shelve.Shelf(d1, protocol=2, writeback=False)
115 s = shelve.Shelf(d2, protocol=2, writeback=True)
153 with shelve.Shelf(d1, protocol=2, writeback=False) as s:
197 _args={'protocol':0
    [all...]
  /external/android-clat/
checksum.c 88 * protocol - the transport layer protocol, can be different from ip6->ip6_nxt for fragments
90 uint32_t ipv6_pseudo_header_checksum(const struct ip6_hdr *ip6, uint16_t len, uint8_t protocol) {
93 checksum_next = htonl(protocol);
112 temp_protocol = htons(ip->protocol);
  /external/golang-protobuf/protoc-gen-go/
doc.go 1 // Go support for Protocol Buffers - Google's data interchange format
33 A plugin for the Google protocol buffer compiler to generate Go code.
37 protocol compiler, so once the protocol compiler (protoc) is installed
40 to generate Go bindings for the protocol defined by file.proto.
47 See the README and documentation for protocol buffers to learn more:
48 https://developers.google.com/protocol-buffers/

Completed in 1406 milliseconds

<<11121314151617181920>>