Home
last modified time | relevance | path

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

/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/
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
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
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.c1571 const char *str_type = NULL; in cil_filecons_to_string() local
1578 str_type = "\t--"; in cil_filecons_to_string()
1581 str_type = "\t-d"; in cil_filecons_to_string()
1584 str_type = "\t-c"; in cil_filecons_to_string()
1587 str_type = "\t-b"; in cil_filecons_to_string()
1590 str_type = "\t-s"; in cil_filecons_to_string()
1593 str_type = "\t-p"; in cil_filecons_to_string()
1596 str_type = "\t-l"; in cil_filecons_to_string()
1599 str_type = ""; in cil_filecons_to_string()
1602 buf_pos = sprintf(str_tmp, "%s", str_type); in cil_filecons_to_string()
/external/python/cpython3/Lib/test/
Dtest_urlparse.py823 def _check_result_type(self, str_type): argument
824 num_args = len(str_type._fields)
825 bytes_type = str_type._encoded_counterpart
826 self.assertIs(bytes_type._decoded_counterpart, str_type)
829 str_result = str_type(*str_args)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DTestRunner.py869 str_type = basestring
871 str_type = str
873 if isinstance(arg, str_type) and kDevNull in arg: