Home
last modified time | relevance | path

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

/third_party/openssl/crypto/asn1/
Da_mbstr.c45 int str_type; in ASN1_mbstring_ncopy() local
122 str_type = V_ASN1_NUMERICSTRING; in ASN1_mbstring_ncopy()
124 str_type = V_ASN1_PRINTABLESTRING; in ASN1_mbstring_ncopy()
126 str_type = V_ASN1_IA5STRING; in ASN1_mbstring_ncopy()
128 str_type = V_ASN1_T61STRING; in ASN1_mbstring_ncopy()
130 str_type = V_ASN1_BMPSTRING; in ASN1_mbstring_ncopy()
133 str_type = V_ASN1_UNIVERSALSTRING; in ASN1_mbstring_ncopy()
136 str_type = V_ASN1_UTF8STRING; in ASN1_mbstring_ncopy()
140 return str_type; in ASN1_mbstring_ncopy()
147 dest->type = str_type; in ASN1_mbstring_ncopy()
[all …]
/third_party/libsnd/src/
Dstrings.c31 psf_store_string (SF_PRIVATE *psf, int str_type, const char *str) in psf_store_string() argument
48 if (str_type != SF_STR_SOFTWARE && str_len == 0) in psf_store_string()
55 if (psf->strings.data [k].type == str_type) in psf_store_string()
88 switch (str_type) in psf_store_string()
142 psf->strings.data [k].type = str_type ; in psf_store_string()
160 psf_set_string (SF_PRIVATE *psf, int str_type, const char *str) in psf_set_string() argument
164 return psf_store_string (psf, str_type, str) ; in psf_set_string()
168 psf_get_string (SF_PRIVATE *psf, int str_type) in psf_get_string() argument
172 if (str_type == psf->strings.data [k].type) in psf_get_string()
Dcommon.h844 const char* psf_get_string (SF_PRIVATE *psf, int str_type) ;
845 int psf_set_string (SF_PRIVATE *psf, int str_type, const char *str) ;
846 int psf_store_string (SF_PRIVATE *psf, int str_type, const char *str) ;
Dsndfile.c1535 sf_get_string (SNDFILE *sndfile, int str_type) in sf_get_string() argument
1543 return psf_get_string (psf, str_type) ; in sf_get_string()
1547 sf_set_string (SNDFILE *sndfile, int str_type, const char* str) in sf_set_string() argument
1552 return psf_set_string (psf, str_type, str) ; in sf_set_string()
/third_party/libsnd/include/
Dsndfile.hh122 int setString (int str_type, const char* str) ;
124 const char* getString (int str_type) const ;
312 SndfileHandle::setString (int str_type, const char* str) in setString() argument
313 { return sf_set_string (p->sf, str_type, str) ; } in setString()
316 SndfileHandle::getString (int str_type) const in getString()
317 { return sf_get_string (p->sf, str_type) ; } in getString()
Dsndfile.h631 int sf_set_string (SNDFILE *sndfile, int str_type, const char* str);
633 const char* sf_get_string (SNDFILE *sndfile, int str_type);
Dsndfile.h.in662 ** functions, the str_type parameter must be one of the SF_STR_* values
668 int sf_set_string (SNDFILE *sndfile, int str_type, const char* str) ;
670 const char* sf_get_string (SNDFILE *sndfile, int str_type) ;
/third_party/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
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
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
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
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/meta/
Dshard_column.cc44 std::string str_type = it_value["type"]; in Init() local
45 column_data_type_.push_back(ColumnDataTypeMap.at(str_type)); in Init()
50 if (str_type == "int32" || str_type == "int64") { in Init()
/third_party/selinux/libsepol/cil/src/
Dcil.c1762 const char *str_type = NULL; in cil_filecons_to_string() local
1769 str_type = "\t--"; in cil_filecons_to_string()
1772 str_type = "\t-d"; in cil_filecons_to_string()
1775 str_type = "\t-c"; in cil_filecons_to_string()
1778 str_type = "\t-b"; in cil_filecons_to_string()
1781 str_type = "\t-s"; in cil_filecons_to_string()
1784 str_type = "\t-p"; in cil_filecons_to_string()
1787 str_type = "\t-l"; in cil_filecons_to_string()
1790 str_type = ""; in cil_filecons_to_string()
1793 buf_pos = sprintf(str_tmp, "%s", str_type); in cil_filecons_to_string()
/third_party/python/Lib/test/
Dtest_urlparse.py850 def _check_result_type(self, str_type): argument
851 num_args = len(str_type._fields)
852 bytes_type = str_type._encoded_counterpart
853 self.assertIs(bytes_type._decoded_counterpart, str_type)
856 str_result = str_type(*str_args)
/third_party/gn/src/gn/
Dparse_tree.cc259 const std::string& str_type = value.FindKey(kJsonNodeType)->GetString(); in BuildFromJSON() local
262 if (str_type == t::kDumpNodeName) { \ in BuildFromJSON()
280 NOTREACHED() << str_type; in BuildFromJSON()
/third_party/libsnd/docs/
Dapi.md516 const char* sf_get_string (SNDFILE *sndfile, int str_type) ;
517 int sf_set_string (SNDFILE *sndfile, int str_type, const char* str) ;
522 **str_type** parameter can be any one of the following string types:
/third_party/elfio/elfio/
Delfio_dump.hpp474 << " Type: " << str_type( reader.get_type() ) << std::endl in header()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstvalue.c3363 GType str_type; in GST_START_TEST() member
3426 g_value_init (&result, comparisons[i].str_type); in GST_START_TEST()