Lines Matching refs:string

194 string L<OSSL_PARAM(3)> structure.
196 If I<bsize> is zero, the string length is determined using strlen(3).
200 string L<OSSL_PARAM(3)> structure.
203 OSSL_PARAM_construct_utf8_ptr() is a function that constructs a UTF8 string
208 OSSL_PARAM_construct_octet_ptr() is a function that constructs an OCTET string
241 OSSL_PARAM_get_utf8_string() retrieves a UTF8 string from the parameter
243 The string is stored into I<*val> with a size limit of I<max_len>,
246 If I<*val> is NULL, memory is allocated for the string (including the
250 OSSL_PARAM_set_utf8_string() sets a UTF8 string from the parameter pointed to
253 that the buffer is large enough to accommodate the string that I<val> points at,
256 the buffer is longer than the string length, otherwise the string will not be
260 to accommodate the string, not including a terminating NUL byte.
262 OSSL_PARAM_get_octet_string() retrieves an OCTET string from the parameter
271 OSSL_PARAM_set_octet_string() sets an OCTET string from the parameter
276 OSSL_PARAM_get_utf8_ptr() retrieves the UTF8 string pointer from the parameter
279 OSSL_PARAM_set_utf8_ptr() sets the UTF8 string pointer in the parameter
282 OSSL_PARAM_get_octet_ptr() retrieves the OCTET string pointer from the parameter
284 The length of the OCTET string is stored in I<*used_len>.
286 OSSL_PARAM_set_octet_ptr() sets the OCTET string pointer in the parameter
288 The length of the OCTET string is provided by I<used_len>.
290 OSSL_PARAM_get_utf8_string_ptr() retrieves the pointer to a UTF8 string from
293 string.
295 OSSL_PARAM_get_octet_string_ptr() retrieves the pointer to a octet string
297 along with the string's length in I<*used_len>.
299 string.
358 const char *foo = "some string";
360 const char bar[] = "some other string";