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

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprotocol/
1-2.c 10 * Gets the protocol attribute of a mutexattr object (which was prev. created
24 int protocol, protcls[3], i; local
37 /* Set the protocol to one of the 3 valid protocols. */
39 printf("Error setting protocol to %d\n", protcls[i]);
43 /* Get the protocol mutex attr. */
44 if (pthread_mutexattr_getprotocol(&mta, &protocol) != 0) {
46 "Error obtaining the protocol attribute.\n");
50 /* Make sure that the protocol set is the protocl we get when calling
52 if (protocol != protcls[i]) {
54 ("Test FAILED: Set protocol %d, but instead got protocol %d.\n"
    [all...]
1-1.c 10 * Gets the protocol attribute of a mutexattr object (which was prev. created
15 * 2. Call pthread_mutexattr_getprotocol() to obtain the protocol.
28 int protocol, rc; local
36 /* Get the protocol mutex attr. */
37 if ((rc = pthread_mutexattr_getprotocol(&mta, &protocol)) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_setprotocol/
1-1.c 10 * Sets the protocol attribute of a mutexattr object (which was prev. created
14 * 1. In a for loop, call pthread_mutexattr_setprotocol with all the valid 'protocol' values.
28 int protocol, protcls[3], i; local
41 /* Set the protocol to one of the 3 valid protocols. */
43 printf("Error setting protocol to %d\n", protcls[i]);
47 /* Get the protocol mutex attr. */
48 if (pthread_mutexattr_getprotocol(&mta, &protocol) != 0) {
50 "Error obtaining the protocol attribute.\n");
54 /* Make sure that the protocol set is the protocl we get when calling
56 if (protocol != protcls[i])
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_query.hpp 39 /// The protocol type associated with the endpoint query.
42 /// Construct with specified service name for any protocol.
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
76 /// Construct with specified service name for a given protocol.
79 * service binding with a specific protocol version.
81 * @param protocol A protocol object, normally representing either the IPv4 or
82 * IPv6 version of an internet protocol
    [all...]
  /external/wayland/tests/
headers-protocol-test.c 26 #include "wayland-client-protocol.h"
27 #include "wayland-server-protocol.h"
30 #error including wayland-client-protocol.h did not include wayland-client.h!
33 #error including wayland-server-protocol.h did not include wayland-server.h!
headers-protocol-core-test.c 26 #include "wayland-client-protocol-core.h"
27 #include "wayland-server-protocol-core.h"
30 #error including wayland-client-protocol-core.h did not include wayland-client-core.h!
33 #error including wayland-server-protocol-core.h did not include wayland-server-core.h!
37 #error including wayland-client-protocol-core.h included wayland-client.h!
40 #error including wayland-server-protocol-core.h included wayland-server.h!
  /packages/apps/Dialer/java/com/android/dialer/p13n/inference/protocol/
P13nRankerFactory.java 15 package com.android.dialer.p13n.inference.protocol;
  /packages/apps/Dialer/java/com/android/incallui/rtt/protocol/
RttCallScreenDelegate.java 17 package com.android.incallui.rtt.protocol;
  /external/clang/test/Modules/Inputs/
redecl-merge-right.h 12 @protocol P1
16 @protocol P1;
18 @protocol P2;
20 @protocol P2;
22 @protocol P2;
51 @protocol P4, P3;
52 @protocol P3;
53 @protocol P3;
54 @protocol P3;
  /external/v8/src/inspector/
v8-heap-profiler-agent-impl.h 9 #include "src/inspector/protocol/Forward.h"
10 #include "src/inspector/protocol/HeapProfiler.h"
18 using protocol::Maybe;
19 using protocol::Response;
21 class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend {
23 V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
24 protocol::DictionaryValue* state);
40 std::unique_ptr<protocol::Runtime::RemoteObject>* result) override;
48 std::unique_ptr<protocol::HeapProfiler::SamplingHeapProfile>*) override;
58 protocol::HeapProfiler::Frontend m_frontend
    [all...]
v8-runtime-agent-impl.h 35 #include "src/inspector/protocol/Forward.h"
36 #include "src/inspector/protocol/Runtime.h"
49 using protocol::Response;
50 using protocol::Maybe;
52 class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
54 V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
55 protocol::DictionaryValue* state);
59 // Part of the protocol.
73 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
StatusLine.java 3 import com.squareup.okhttp.Protocol;
15 public final Protocol protocol; field in class:StatusLine
19 public StatusLine(Protocol protocol, int code, String message) {
20 this.protocol = protocol;
26 return new StatusLine(response.protocol(), response.code(), response.message());
33 // Parse protocol like "HTTP/1.1" followed by a space.
35 Protocol protocol local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>
  /external/minijail/
get_googletest.sh 5 wget -q -nc --secure-protocol=TLSv1 "https://github.com/google/googletest/archive/release-${PV}.tar.gz" -O "googletest-release-${PV}.tar.gz"
  /external/webrtc/talk/app/webrtc/objc/public/
RTCStatsDelegate.h 32 // RTCSessionDescriptionDelegate is a protocol for receiving statistic
34 @protocol RTCStatsDelegate<NSObject>
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDTURNClient.h 13 @protocol ARDTURNClient <NSObject>
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLContext.java 34 * Instances of this class represent a secure socket protocol
80 * This protocol is described in the <a href=
92 private final String protocol; field in class:SSLContext
99 * @param protocol the protocol
102 String protocol) {
105 this.protocol = protocol;
160 * specified secure socket protocol.
166 * Provider that supports the specified protocol is returned
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
output_ipsec_conf 69 output_ipsec_conf target protocol mode first_spi src_addr dst_addr
71 protocol: ah / esp / ipcomp
101 protocol=$2
107 # Algorithm options for each protocol
108 case $protocol in
125 add $src_ipaddr $dst_ipaddr $protocol $first_spi
129 add $dst_ipaddr $src_ipaddr $protocol `expr $first_spi + 1`
154 -P $direct1 ipsec $protocol/transport//use ;
157 -P $direct2 ipsec $protocol/transport//use ;
164 -P $direct1 ipsec $protocol/tunnel/${src_ipaddr}-${dst_ipaddr}/use
    [all...]
  /libcore/ojluni/src/main/java/sun/net/util/
URLUtil.java 47 String protocol = url.getProtocol(); local
48 if (protocol != null) {
49 /* protocol is compared case-insensitive, so convert to lowercase */
50 protocol = protocol.toLowerCase();
51 strForm.append(protocol);
92 // If protocol is HTTP or HTTPS than use URLPermission object
  /external/selinux/python/sepolicy/sepolicy/
network.py 36 def get_network_connect(src, protocol, perm, check_bools=False):
39 tlist = get_types(src, "%s_socket" % protocol, [perm], check_bools)
41 d[(src, protocol, perm)] = []
53 d[(src, protocol, perm)].append((i, ["all ports with out defined types"]))
55 d[(src, protocol, perm)].append((i, ["all ports"]))
57 d[(src, protocol, perm)].append((i, ["all ports > 1024"]))
59 d[(src, protocol, perm)].append((i, ["all ports < 1024"]))
61 d[(src, protocol, perm)].append((i, ["all ports > 500 and < 1024"]))
64 d[(src, protocol, perm)].append((i, portrecs[(i, protocol)]))
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 58 String protocol = url.getProtocol(); local
62 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy, urlFilter);
63 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy, urlFilter);
64 throw new IllegalArgumentException("Unexpected protocol: " + protocol);
77 @Override public URLStreamHandler createURLStreamHandler(final String protocol) {
78 if (!protocol.equals("http") && !protocol.equals("https")) return null;
90 if (protocol.equals("http")) return 80;
91 if (protocol.equals("https")) return 443
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
ProtocolHelper.java 17 package com.android.voicemail.impl.protocol;
29 VisualVoicemailProtocol protocol, OmtpVvmCarrierConfigHelper config) {
38 return protocol.createMessageSender(

Completed in 942 milliseconds

12 3 4 5 6 7 8 91011>>