/third_party/node/test/parallel/ |
H A D | test-url-parse-format.js | 22 protocol: 'http:', 33 protocol: 'http:', 46 protocol: 'http:', 58 protocol: 'http:', 69 protocol: 'http:', 79 protocol: 'http:', 89 protocol: 'http:', 99 protocol: 'http:', 110 protocol: 'http:', 121 protocol [all...] |
H A D | test-url-format.js | 14 protocol: 'http:', 24 protocol: 'http:', 34 protocol: 'http:', 44 protocol: 'http:', 54 protocol: 'http:', 64 protocol: 'http:', 72 protocol: 'http:', 78 protocol: 'http', 86 protocol: 'xmpp:', 95 protocol [all...] |
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-webdriver-serializer.cc | 12 #include "src/inspector/protocol/Forward.h" 17 using protocol::Response; 19 protocol::Response _serializeRecursively( in _serializeRecursively() 21 std::unique_ptr<protocol::Value>* result) { in _serializeRecursively() 23 std::unique_ptr<protocol::Runtime::WebDriverValue> webDriver_value; in _serializeRecursively() 29 std::unique_ptr<protocol::DictionaryValue> result_dict = in _serializeRecursively() 30 protocol::DictionaryValue::create(); in _serializeRecursively() 33 protocol::String("type"), in _serializeRecursively() 34 protocol::StringValue::create(webDriver_value->getType())); in _serializeRecursively() 36 result_dict->setValue(protocol in _serializeRecursively() [all...] |
H A D | v8-debugger-agent-impl.h | 16 #include "src/inspector/protocol/Debugger.h" 17 #include "src/inspector/protocol/Forward.h" 28 using protocol::Maybe; 29 using protocol::Response; 31 class V8DebuggerAgentImpl : public protocol::Debugger::Backend { 39 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 40 protocol::DictionaryValue* state); 46 // Part of the protocol. 57 std::unique_ptr<protocol::Array<protocol [all...] |
H A D | v8-inspector-session-impl.cc | 14 #include "src/inspector/protocol/Protocol.h" 49 std::unique_ptr<protocol::DictionaryValue> ParseState(StringView state) { in ParseState() 57 std::unique_ptr<protocol::Value> value = in ParseState() 58 protocol::Value::parseBinary(cbor.data(), cbor.size()); in ParseState() 59 std::unique_ptr<protocol::DictionaryValue> dictionaryValue = in ParseState() 60 protocol::DictionaryValue::cast(std::move(value)); in ParseState() 63 return protocol::DictionaryValue::create(); in ParseState() 70 protocol::Runtime::Metainfo::commandPrefix) || in canDispatchMethod() 72 protocol::Debugger::Metainfo::commandPrefix) || in canDispatchMethod() 74 protocol in canDispatchMethod() [all...] |
H A D | v8-runtime-agent-impl.h | 39 #include "src/inspector/protocol/Forward.h" 40 #include "src/inspector/protocol/Runtime.h" 55 using protocol::Response; 56 using protocol::Maybe; 58 class V8RuntimeAgentImpl : public protocol::Runtime::Backend { 60 V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 61 protocol::DictionaryValue* state); 67 // Part of the protocol. 85 Maybe<protocol::Array<protocol [all...] |
H A D | v8-profiler-agent-impl.cc | 13 #include "src/inspector/protocol/Protocol.h" 45 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>> 50 std::make_unique<protocol::Array<protocol::Profiler::PositionTickInfo>>(); in buildInspectorObjectForPositionTicks() 54 std::unique_ptr<protocol::Profiler::PositionTickInfo> line = in buildInspectorObjectForPositionTicks() 55 protocol::Profiler::PositionTickInfo::create() in buildInspectorObjectForPositionTicks() 65 std::unique_ptr<protocol::Profiler::ProfileNode> buildInspectorObjectFor( in buildInspectorObjectFor() 70 protocol::Runtime::CallFrame::create() in buildInspectorObjectFor() 77 auto result = protocol in buildInspectorObjectFor() [all...] |
H A D | v8-profiler-agent-impl.h | 12 #include "src/inspector/protocol/Forward.h" 13 #include "src/inspector/protocol/Profiler.h" 24 using protocol::Maybe; 25 using protocol::Response; 27 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { 29 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 30 protocol::DictionaryValue* state); 42 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 49 std::unique_ptr<protocol::Array<protocol [all...] |
H A D | injected-script.h | 43 #include "src/inspector/protocol/Forward.h" 44 #include "src/inspector/protocol/Runtime.h" 56 using protocol::Maybe; 57 using protocol::Response; 62 std::unique_ptr<protocol::Runtime::RemoteObject> result, 63 protocol::Maybe<protocol::Runtime::ExceptionDetails> 65 virtual void sendFailure(const protocol::DispatchResponse& response) = 0; 82 std::unique_ptr<protocol::Array<protocol [all...] |
H A D | v8-debugger-agent-impl.cc | 18 #include "src/inspector/protocol/Debugger.h" 19 #include "src/inspector/protocol/Protocol.h" 34 using protocol::Array; 35 using protocol::Maybe; 36 using protocol::Debugger::BreakpointId; 37 using protocol::Debugger::CallFrame; 38 using protocol::Debugger::Scope; 39 using protocol::Runtime::ExceptionDetails; 40 using protocol::Runtime::RemoteObject; 41 using protocol [all...] |
H A D | v8-console-message.cc | 14 #include "src/inspector/protocol/Protocol.h" 31 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Log; in consoleAPITypeValue() 33 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Debug; in consoleAPITypeValue() 35 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Info; in consoleAPITypeValue() 37 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Error; in consoleAPITypeValue() 39 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Warning; in consoleAPITypeValue() 41 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Clear; in consoleAPITypeValue() 43 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dir; in consoleAPITypeValue() 45 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dirxml; in consoleAPITypeValue() 47 return protocol in consoleAPITypeValue() [all...] |
H A D | v8-heap-profiler-agent-impl.h | 11 #include "src/inspector/protocol/Forward.h" 12 #include "src/inspector/protocol/HeapProfiler.h" 22 using protocol::Maybe; 23 using protocol::Response; 25 class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend { 27 V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 28 protocol::DictionaryValue* state); 51 std::unique_ptr<protocol::Runtime::RemoteObject>* result) override; 59 std::unique_ptr<protocol::HeapProfiler::SamplingHeapProfile>*) override; 61 std::unique_ptr<protocol [all...] |
H A D | value-mirror.h | 13 #include "src/inspector/protocol/Protocol.h" 14 #include "src/inspector/protocol/Runtime.h" 55 virtual protocol::Response buildRemoteObject( 57 std::unique_ptr<protocol::Runtime::RemoteObject>* result) const = 0; 60 std::unique_ptr<protocol::Runtime::PropertyPreview>*) const {} in buildPropertyPreview() 64 std::unique_ptr<protocol::Runtime::ObjectPreview>*) const {} in buildObjectPreview() 67 std::unique_ptr<protocol::Runtime::ObjectPreview>*) const {} in buildEntryPreview() 69 virtual protocol::Response buildWebDriverValue( 71 std::unique_ptr<protocol::Runtime::WebDriverValue>* result) const = 0; 91 protocol [all...] |
H A D | v8-schema-agent-impl.h | 11 #include "src/inspector/protocol/Forward.h" 12 #include "src/inspector/protocol/Schema.h" 18 using protocol::Response; 20 class V8SchemaAgentImpl : public protocol::Schema::Backend { 22 V8SchemaAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 23 protocol::DictionaryValue* state); 29 std::unique_ptr<protocol::Array<protocol::Schema::Domain>>*) override; 33 protocol::Schema::Frontend m_frontend;
|
H A D | v8-inspector-session-impl.h | 12 #include "src/inspector/protocol/Forward.h" 13 #include "src/inspector/protocol/Runtime.h" 14 #include "src/inspector/protocol/Schema.h" 30 using protocol::Response; 33 public protocol::FrontendChannel { 62 std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject( 65 std::unique_ptr<protocol::Runtime::RemoteObject> wrapTable( 68 std::vector<std::unique_ptr<protocol::Schema::Domain>> supportedDomainsImpl(); 76 std::vector<std::unique_ptr<protocol::Schema::API::Domain>> supportedDomains() 87 std::vector<std::unique_ptr<protocol [all...] |
H A D | v8-runtime-agent-impl.cc | 44 #include "src/inspector/protocol/Protocol.h" 66 using protocol::Runtime::RemoteObject; 78 void sendSuccess(std::unique_ptr<protocol::Runtime::RemoteObject> result, 79 protocol::Maybe<protocol::Runtime::ExceptionDetails> 84 void sendFailure(const protocol::DispatchResponse& response) override { 102 Maybe<protocol::Runtime::ExceptionDetails> exceptionDetails; in wrapEvaluateResultAsync() 118 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, in innerCallFunctionOn() 127 protocol in innerCallFunctionOn() [all...] |
H A D | v8-console-agent-impl.h | 9 #include "src/inspector/protocol/Console.h" 10 #include "src/inspector/protocol/Forward.h" 17 using protocol::Response; 19 class V8ConsoleAgentImpl : public protocol::Console::Backend { 21 V8ConsoleAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, 22 protocol::DictionaryValue* state); 41 protocol::DictionaryValue* m_state; 42 protocol::Console::Frontend m_frontend;
|
/third_party/curl/tests/libtest/ |
H A D | lib1535.c | 33 long protocol; in test() local 40 /* Test that protocol is properly initialized on curl_easy_init. in test() 44 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 51 if(protocol) { in test() 52 fprintf(stderr, "%s:%d protocol init failed; expected 0 but is %ld\n", in test() 53 __FILE__, __LINE__, protocol); in test() 67 /* Test that a protocol is properly set after receiving an HTTP resource. in test() 71 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 78 if(protocol != CURLPROTO_HTTP) { in test() 79 fprintf(stderr, "%s:%d protocol o in test() [all...] |
/third_party/node/lib/internal/modules/esm/ |
H A D | load.js | 38 const { protocol, href } = url; 41 if (protocol === 'file:') { 44 } else if (protocol === 'data:') { 52 protocol === 'https:' || 53 protocol === 'http:' 124 * throws an error if the protocol is not one of the protocols 130 // Avoid accessing the `protocol` property due to the lazy getters. 131 const protocol = parsed?.protocol; 133 protocol [all...] |
/third_party/ltp/testcases/network/stress/ns-tools/ |
H A D | 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/tunne [all...] |
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client_rawpacket.py | 23 def __init__(self, protocol): 24 self.protocol = protocol 29 self.protocol.connect() 38 self.data_buffer += self.protocol.receive_data() 52 self.protocol.close() 59 bytes_send = self.protocol.send_data(data) 82 if not blocking and not self.protocol.ready(): 85 received_data = self.protocol.receive_data(MAX_BUFFER_SIZE)
|
H A D | jerry_client_websocket.py | 24 def __init__(self, protocol): 27 self.protocol = protocol 45 self.data_buffer += self.protocol.receive_data() 57 self.protocol.connect() 67 self.data_buffer += self.protocol.receive_data() 82 """ Private function to send data using the given protocol. """ 86 bytes_send = self.protocol.send_data(data) 102 self.protocol.close() 125 if not blocking and not self.protocol [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 106 ".protocol.export_macro": "", 107 ".protocol.export_header": False, 108 ".protocol.options": False, 109 ".protocol.file_name_prefix": "", 177 config.protocol.file_name_prefix + file_name) 234 "return_type": "std::unique_ptr<protocol::%s::%s>" % ( 236 "pass_type": "std::unique_ptr<protocol::%s::%s>" % ( 241 "type": "std::unique_ptr<protocol::%s::%s>" % (domain_name, type["id"]), 242 "raw_type": "protocol::%s::%s" % (domain_name, type["id"]), 243 "raw_pass_type": "protocol [all...] |
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 96 ".protocol.export_macro": "", 97 ".protocol.export_header": False, 98 ".protocol.options": False, 99 ".protocol.file_name_prefix": "", 173 return format_include(config, header, config.protocol.file_name_prefix + file_name) 221 "return_type": "std::unique_ptr<protocol::%s::%s>" % (domain_name, type["id"]), 222 "pass_type": "std::unique_ptr<protocol::%s::%s>" % (domain_name, type["id"]), 226 "type": "std::unique_ptr<protocol::%s::%s>" % (domain_name, type["id"]), 227 "raw_type": "protocol::%s::%s" % (domain_name, type["id"]), 228 "raw_pass_type": "protocol [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_setprotocol/ |
H A D | 3-1.c | 11 * [ENOTSUP] The value specified by protocol is an unsupported value. 13 * [EINVAL] 'protocol' is invalid 28 int protocol = INVALID_PROTOCOL; in main() local 38 while (protocol == PTHREAD_PRIO_NONE || protocol == PTHREAD_PRIO_INHERIT in main() 39 || protocol == PTHREAD_PRIO_PROTECT) { in main() 40 protocol--; in main() 43 /* Set the protocol to an invalid value. */ in main() 44 ret = pthread_mutexattr_setprotocol(&mta, protocol); in main()
|