Home
last modified time | relevance | path

Searched refs:local_type (Results 1 – 5 of 5) sorted by relevance

/external/curl/tests/python_dependencies/impacket/
Dnmb.py679 …_type = TYPE_SERVER, sess_port = NETBIOS_SESSION_PORT, timeout = None, local_type = TYPE_WORKSTATI… argument
684 self.__local_type = local_type
719 self._request_session(remote_type, local_type, timeout)
786 def _request_session(self, remote_type, local_type, timeout = None): argument
830 …_type = TYPE_SERVER, sess_port = NETBIOS_SESSION_PORT, timeout = None, local_type = TYPE_WORKSTATI… argument
836 …te_type = remote_type, sess_port = sess_port, timeout = timeout, local_type = local_type, sock=soc…
858 def _request_session(self, remote_type, local_type, timeout = None): argument
861 myname = encode_name(self.get_myname(), local_type, '')
/external/vulkan-validation-layers/layers/
Dvk_layer_logging.h675 VkFlags local_type = 0; in layer_create_report_callback() local
676 DebugReportFlagsToAnnotFlags(create_info->flags, true, &local_severity, &local_type); in layer_create_report_callback()
678 debug_data->active_types |= local_type; in layer_create_report_callback()
892 VkFlags local_type = 0; in will_log_msg() local
893 DebugReportFlagsToAnnotFlags(msg_flags, true, &local_severity, &local_type); in will_log_msg()
894 …|| !(debug_data->active_severities & local_severity) || !(debug_data->active_types & local_type)) { in will_log_msg()
947 VkFlags local_type = 0; in log_msg() local
948 DebugReportFlagsToAnnotFlags(msg_flags, true, &local_severity, &local_type); in log_msg()
949 …|| !(debug_data->active_severities & local_severity) || !(debug_data->active_types & local_type)) { in log_msg()
/external/webrtc/webrtc/p2p/base/
Dp2ptransportchannel_unittest.cc185 : local_type(lt), local_proto(lp), remote_type(rt), remote_proto(rp), in Result()
190 std::string local_type; member
401 (expected.local_type == "local" && expected.remote_type == "prflx") || in IsLocalToPrflxOrTheReverse()
402 (expected.local_type == "prflx" && expected.remote_type == "local")); in IsLocalToPrflxOrTheReverse()
409 const std::string& local_type = LocalCandidate(ep1_ch1())->type(); in CheckCandidate1() local
415 ((local_type == expected.local_type && in CheckCandidate1()
421 local_type == expected.remote_type && in CheckCandidate1()
422 remote_type == expected.local_type))); in CheckCandidate1()
434 const std::string& local_type = LocalCandidate(ep1_ch1())->type(); in ExpectCandidate1() local
438 EXPECT_EQ(expected.local_type, local_type); in ExpectCandidate1()
[all …]
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc230 ValueType type = __ local_type(param_idx); in CollectReservedRegsForParameters()
310 if (!CheckSupportedType(decoder, kTypes_ilfd, __ local_type(i), "param")) in StartFunctionBody()
343 input_idx += ProcessParameter(__ local_type(param_idx), input_idx); in StartFunctionBody()
1098 DCHECK_EQ(type, __ local_type(local_index)); in SetLocalFromStackSlot()
Dliftoff-assembler.h565 ValueType local_type(uint32_t index) { in local_type() function