Searched refs:cstr (Results 1 - 9 of 9) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Dbase64.h50 isc_base64_decodestring(const char *cstr, isc_buffer_t *target);
55 *\li 'cstr' is non-null.
61 *\li #ISC_R_BADBASE64 -- 'cstr' is not a valid base64 encoding.
H A Dhex.h50 isc_hex_decodestring(const char *cstr, isc_buffer_t *target);
55 *\li 'cstr' is non-null.
61 *\li #ISC_R_BADHEX -- 'cstr' is not a valid hex encoding.
H A Dbase32.h64 isc_base32_decodestring(const char *cstr, isc_buffer_t *target);
66 isc_base32hex_decodestring(const char *cstr, isc_buffer_t *target);
68 isc_base32hexnp_decodestring(const char *cstr, isc_buffer_t *target);
74 *\li 'cstr' is non-null.
80 *\li #ISC_R_BADBASE32 -- 'cstr' is not a valid base32 encoding.
/bind-9.11.3/lib/isccc/include/isccc/
H A Dbase64.h59 isccc_base64_decode(const char *cstr, isccc_region_t *target);
64 *\li 'cstr' is non-null.
70 *\li #ISC_R_BADBASE64 -- 'cstr' is not a valid base64 encoding.
/bind-9.11.3/lib/isccc/
H A Dbase64.c60 isccc_base64_decode(const char *cstr, isccc_region_t *target) { argument
66 result = isc_base64_decodestring(cstr, &b);
/bind-9.11.3/lib/isc/
H A Dbase32.c325 base32_decodestring(const char *cstr, const char base[], isc_boolean_t pad, argument
332 int c = *cstr++;
344 isc_base32_decodestring(const char *cstr, isc_buffer_t *target) { argument
345 return (base32_decodestring(cstr, base32, ISC_TRUE, target));
349 isc_base32hex_decodestring(const char *cstr, isc_buffer_t *target) { argument
350 return (base32_decodestring(cstr, base32hex, ISC_TRUE, target));
354 isc_base32hexnp_decodestring(const char *cstr, isc_buffer_t *target) { argument
355 return (base32_decodestring(cstr, base32hex, ISC_FALSE, target));
H A Dhex.c150 isc_hex_decodestring(const char *cstr, isc_buffer_t *target) { argument
155 int c = *cstr++;
H A Dbase64.c201 isc_base64_decodestring(const char *cstr, isc_buffer_t *target) { argument
206 int c = *cstr++;
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Ddynstr_test.c284 const char *cstr; local
289 cstr = atf_dynstr_cstring(&str);
292 ATF_REQUIRE_EQ(cstr, cstr2);
308 const char *cstr; local
312 cstr = atf_dynstr_cstring(&str);
313 ATF_REQUIRE(cstr != NULL);
314 ATF_REQUIRE(strcmp(cstr, "Test string 1") == 0);
318 cstr = atf_dynstr_cstring(&str);
319 ATF_REQUIRE(cstr != NULL);
320 ATF_REQUIRE(strcmp(cstr, "Tes
[all...]

Completed in 75 milliseconds