/external/ppp/pppd/plugins/pppoatm/ |
misc.c | 45 void atm_tcpip_port_mapping(char *vs_id,uint8_t protocol,uint16_t port) 48 vs_id[4] = protocol; /* e.g. IP_TCP or IP_UDP; from netinet/protocols.h */
|
/external/webkit/WebCore/page/ |
SecurityOriginHash.h | 42 origin->protocol().impl() ? origin->protocol().impl()->hash() : 0,
|
/external/webkit/WebCore/websockets/ |
WebSocketHandshake.h | 50 WebSocketHandshake(const KURL&, const String& protocol, ScriptExecutionContext*); 58 void setClientProtocol(const String& protocol);
|
/external/webkit/WebCore/workers/ |
WorkerLocation.idl | 36 readonly attribute DOMString protocol;
|
/external/webkit/WebKit/chromium/src/ |
WebSecurityOrigin.cpp | 68 WebString WebSecurityOrigin::protocol() const function in class:WebKit::WebSecurityOrigin 71 return m_private->protocol();
|
/external/webkit/WebKit/win/Interfaces/ |
IWebSecurityOrigin.idl | 42 HRESULT protocol([out, retval] BSTR* result);
|
/external/webkit/WebKit/win/ |
WebURLProtectionSpace.h | 59 /* [in] */ BSTR protocol, 76 virtual HRESULT STDMETHODCALLTYPE protocol(
|
/external/kernel-headers/original/linux/ |
pnp.h | 139 struct list_head protocol_list; /* node in protocol's list of cards */ 142 struct pnp_protocol * protocol; member in struct:pnp_card 184 struct list_head protocol_list; /* node in list of device's protocol */ 188 struct pnp_protocol * protocol; member in struct:pnp_dev 248 #define pnp_can_read(dev) (((dev)->protocol) && ((dev)->protocol->get) && \ 250 #define pnp_can_write(dev) (((dev)->protocol) && ((dev)->protocol->set) && \ 252 #define pnp_can_disable(dev) (((dev)->protocol) && ((dev)->protocol->disable) && [all...] |
/external/dhcpcd/ |
bpf.c | 52 open_socket(struct interface *iface, int protocol) 110 if (protocol == ETHERTYPE_ARP) { 138 send_raw_packet(const struct interface *iface, int protocol, 147 hw.ether_type = htons(protocol); 152 if (protocol == ETHERTYPE_ARP) 162 get_raw_packet(struct interface *iface, int protocol, 170 if (protocol == ETHERTYPE_ARP)
|
/external/webkit/WebKit/gtk/webkit/ |
webkitsecurityorigin.cpp | 36 * by web sites. An origin consists of a host name, a protocol, and a port 68 g_free(priv->protocol); 143 * WebKitSecurityOrigin:protocol: 145 * The protocol of the security origin. 150 g_param_spec_string("protocol", 151 _("Protocol"), 152 _("The protocol of the security origin"), 225 * Returns the protocol for the security origin. 227 * Returns: the protocol for the security origin 236 WebCore::String protocol = priv->coreOrigin->protocol() local [all...] |
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
handshake.py | 68 r'(WebSocket-Protocol: [\x20-\x7e]+\r\n)?' 88 def _validate_protocol(protocol): 89 """Validate WebSocket-Protocol string.""" 91 if not protocol: 92 raise HandshakeError('Invalid WebSocket-Protocol: empty') 93 for c in protocol: 95 raise HandshakeError('Illegal character in protocol: %r' % c) 165 protocol = self._request.headers_in.get('WebSocket-Protocol') 166 if protocol is not None [all...] |
/system/bluetooth/tools/ |
sock_shutdown_test.c | 71 int protocol = -1; local 77 protocol = 0; 82 protocol = BTPROTO_RFCOMM; 87 protocol = BTPROTO_SCO; 92 protocol = BTPROTO_L2CAP; 97 protocol = 0; 102 ret = socket(family, typ, protocol);
|
/external/iproute2/tc/ |
tc_filter.c | 34 fprintf(stderr, " [ pref PRIO ] protocol PROTO\n"); 57 __u32 protocol = 0; local 76 protocol = ETH_P_ALL; 110 } else if (matches(*argv, "protocol") == 0) { 114 duparg("protocol", *argv); 116 invarg(*argv, "invalid protocol"); 117 protocol = id; 136 req.t.tcm_info = TC_H_MAKE(prio<<16, protocol); 234 fprintf(fp, "protocol %s ", 268 __u32 protocol = 0 local [all...] |
/bionic/libc/unistd/ |
socketcalls.c | 54 int socket(int domain, int type, int protocol) 60 t[2] = (unsigned long) protocol; 145 int socketpair(int d, int type, int protocol, int sv[2]) 151 t[2] = (unsigned long) protocol;
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/ |
Handler.java | 18 package org.apache.harmony.luni.internal.net.www.protocol.ftp; 54 * if the protocol handler doesn't support this method.
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/ |
Handler.java | 18 package org.apache.harmony.luni.internal.net.www.protocol.http; 67 * if the protocol handler doesn't support this method.
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/ |
Handler.java | 18 package org.apache.harmony.luni.internal.net.www.protocol.https;
|
/external/apache-http/src/org/apache/http/client/ |
AuthenticationHandler.java | 41 import org.apache.http.protocol.HttpContext;
|
/external/apache-http/src/org/apache/http/client/entity/ |
UrlEncodedFormEntity.java | 38 import org.apache.http.protocol.HTTP;
|
/external/apache-http/src/org/apache/http/client/methods/ |
HttpEntityEnclosingRequestBase.java | 38 import org.apache.http.protocol.HTTP;
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultProxyAuthenticationHandler.java | 41 import org.apache.http.protocol.HttpContext;
|
DefaultTargetAuthenticationHandler.java | 41 import org.apache.http.protocol.HttpContext;
|
EntityEnclosingRequestWrapper.java | 38 import org.apache.http.protocol.HTTP;
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpEntityEnclosingRequest.java | 39 import org.apache.http.protocol.HTTP;
|
/external/apache-http/src/org/apache/http/protocol/ |
BasicHttpContext.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/BasicHttpContext.java $ 32 package org.apache.http.protocol;
|