Home
last modified time | relevance | path

Searched refs:str_type (Results 1 – 13 of 13) sorted by relevance

/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Da_mbstr.c94 int str_type; in OPENSSL_DECLARE_ERROR_REASON() local
196 str_type = V_ASN1_PRINTABLESTRING; in OPENSSL_DECLARE_ERROR_REASON()
198 str_type = V_ASN1_IA5STRING; in OPENSSL_DECLARE_ERROR_REASON()
200 str_type = V_ASN1_T61STRING; in OPENSSL_DECLARE_ERROR_REASON()
202 str_type = V_ASN1_BMPSTRING; in OPENSSL_DECLARE_ERROR_REASON()
207 str_type = V_ASN1_UNIVERSALSTRING; in OPENSSL_DECLARE_ERROR_REASON()
212 str_type = V_ASN1_UTF8STRING; in OPENSSL_DECLARE_ERROR_REASON()
219 return str_type; in OPENSSL_DECLARE_ERROR_REASON()
228 dest->type = str_type; in OPENSSL_DECLARE_ERROR_REASON()
231 dest = ASN1_STRING_type_new(str_type); in OPENSSL_DECLARE_ERROR_REASON()
[all …]
/external/boringssl/src/crypto/asn1/
Da_mbstr.c94 int str_type; in OPENSSL_DECLARE_ERROR_REASON() local
196 str_type = V_ASN1_PRINTABLESTRING; in OPENSSL_DECLARE_ERROR_REASON()
198 str_type = V_ASN1_IA5STRING; in OPENSSL_DECLARE_ERROR_REASON()
200 str_type = V_ASN1_T61STRING; in OPENSSL_DECLARE_ERROR_REASON()
202 str_type = V_ASN1_BMPSTRING; in OPENSSL_DECLARE_ERROR_REASON()
207 str_type = V_ASN1_UNIVERSALSTRING; in OPENSSL_DECLARE_ERROR_REASON()
212 str_type = V_ASN1_UTF8STRING; in OPENSSL_DECLARE_ERROR_REASON()
219 return str_type; in OPENSSL_DECLARE_ERROR_REASON()
228 dest->type = str_type; in OPENSSL_DECLARE_ERROR_REASON()
231 dest = ASN1_STRING_type_new(str_type); in OPENSSL_DECLARE_ERROR_REASON()
[all …]
/external/python/cpython2/Lib/test/
Dtest_traceback.py147 str_type = "String Exception"
148 err = traceback.format_exception_only(str_type, None)
150 self.assertEqual(err[0], str_type + '\n')
153 str_type = "String Exception"
155 err = traceback.format_exception_only(str_type, str_value)
157 self.assertEqual(err[0], str_type + ': ' + str_value + '\n')
/external/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl19.c72 char *str_type();
171 str_type(type), str_type(fl->l_type)); in compare_lock()
213 char *str_type(int type) in str_type() function
Dfcntl20.c68 char *str_type();
170 str_type(type), str_type(fl->l_type)); in compare_lock()
212 char *str_type(int type) in str_type() function
Dfcntl11.c68 char *str_type();
157 str_type(type), str_type(fl->l_type)); in compare_lock()
187 char *str_type(int type) in str_type() function
Dfcntl17.c95 char *str_type();
301 str_type(lock->l_type), str_type(fl.l_type)); in do_test()
333 char *str_type(int type) in str_type() function
Dfcntl21.c67 char *str_type();
178 str_type(type), str_type(fl->l_type)); in compare_lock()
220 char *str_type(int type) in str_type() function
/external/selinux/libsepol/cil/src/
Dcil.c1734 const char *str_type = NULL; in cil_filecons_to_string() local
1741 str_type = "\t--"; in cil_filecons_to_string()
1744 str_type = "\t-d"; in cil_filecons_to_string()
1747 str_type = "\t-c"; in cil_filecons_to_string()
1750 str_type = "\t-b"; in cil_filecons_to_string()
1753 str_type = "\t-s"; in cil_filecons_to_string()
1756 str_type = "\t-p"; in cil_filecons_to_string()
1759 str_type = "\t-l"; in cil_filecons_to_string()
1762 str_type = ""; in cil_filecons_to_string()
1765 buf_pos = sprintf(str_tmp, "%s", str_type); in cil_filecons_to_string()
/external/python/cpython3/Lib/test/
Dtest_urlparse.py825 def _check_result_type(self, str_type): argument
826 num_args = len(str_type._fields)
827 bytes_type = str_type._encoded_counterpart
828 self.assertIs(bytes_type._decoded_counterpart, str_type)
831 str_result = str_type(*str_args)
/external/llvm-project/llvm/utils/lit/lit/
DTestRunner.py740 str_type = basestring
742 str_type = str
744 if isinstance(arg, str_type) and kDevNull in arg:
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp288 typedef wchar_t* str_type; in InitializePythonHome() typedef
290 typedef char* str_type; in InitializePythonHome()
292 static str_type g_python_home = []() -> str_type { in InitializePythonHome()
/external/fmtlib/test/
Dformat-test.cc2463 using str_type = std::basic_string<fmt::detail::char8_type>; in TEST() typedef
2464 str_type format(reinterpret_cast<const fmt::detail::char8_type*>(u8"{:.4}")); in TEST()
2465 str_type str(reinterpret_cast<const fmt::detail::char8_type*>( in TEST()