Searched defs:out (Results 1 - 16 of 16) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Diterated_hash.c27 isc_iterated_hash(unsigned char out[ISC_SHA1_DIGESTLENGTH], argument
42 isc_sha1_final(&ctx, out);
43 in = out;
H A Dentropy.c274 * Steal some values out of the pool, and xor them into the
1082 dumpstats(isc_entropy_t *ent, FILE *out) { argument
1083 fprintf(out,
1100 isc_entropy_stats(isc_entropy_t *ent, FILE *out) { argument
1104 dumpstats(ent, out);
H A Dmem.c183 unsigned int allocated; /*%< # of items currently given out */
214 print_active(isc_mem_t *ctx, FILE *out);
1199 print_active(isc_mem_t *mctx, FILE *out) { argument
1206 fprintf(out, "%s", isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1223 fprintf(out, format,
1232 fprintf(out, "%s", isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1239 * Print the stats[] on the stream "out" with suitable formatting.
1242 isc_mem_stats(isc_mem_t *ctx, FILE *out) { argument
1255 fprintf(out, "%s%5lu: %11lu gets, %11lu rem",
1260 fprintf(out, " (
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dcheck_test.cpp256 std::auto_ptr< atf::fs::path > out; local
262 out.reset(new atf::fs::path(r->stdout_path()));
264 ATF_REQUIRE(atf::fs::exists(*out.get()));
267 ATF_REQUIRE(!atf::fs::exists(*out.get()));
/bind-9.6-ESV-R11/lib/isc/tests/
H A Dhash_test.c47 tohexstr(unsigned char *d, unsigned int len, char *out);
50 * and a pointer to a character array to put the output (*out).
52 * placed into the array *out
54 * 'out' MUST point to an array of at least len / 2 + 1
60 tohexstr(unsigned char *d, unsigned int len, char *out) { argument
62 out[0]='\0';
65 strcat(out, "0x");
68 strcat(out, c_ret);
70 strcat(out, "\0");
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dcheck_test.c343 atf_fs_path_t out, err; local
348 RE(atf_fs_path_init_fmt(&out, "%s", atf_check_result_stdout(&result)));
351 RE(atf_fs_exists(&out, &exists)); ATF_CHECK(exists);
354 RE(atf_fs_exists(&out, &exists)); ATF_CHECK(!exists);
358 atf_fs_path_fini(&out);
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_filesystem_driver.c170 create_path_helper(char *out, const char *in, config_data_t *cd) { argument
187 strcat(out, (char *) &tmpPtr[i+1]);
189 strncat(out, (char *) &tmpPtr[i+1],
191 strncat(out, (char *) &cd->pathsep, 1);
207 strcat(out, (char *) &tmpPtr[i]);
209 strncat(out, (char *) &tmpPtr[i], cd->splitcnt);
210 strncat(out, (char *) &cd->pathsep, 1);
302 * start out with base directory.
/bind-9.6-ESV-R11/lib/dns/
H A Dopenssldh_link.c571 BIGNUM *out; local
588 out = BN_bin2bn(data, strlen(str)/2, b);
589 RUNTIME_CHECK(out != NULL);
H A Ddb.c599 dns_db_printnode(dns_db_t *db, dns_dbnode_t *node, FILE *out) { argument
602 * 'out'.
608 (db->methods->printnode)(db, node, out);
H A Ddst_api.c98 isc_buffer_t *out);
118 goto out; \
209 out:
515 out:
652 out:
864 const char *directory, isc_buffer_t *out) {
871 type, directory, out));
1229 const char *directory, isc_buffer_t *out)
1235 REQUIRE(out != NULL);
1241 if (isc_buffer_availablelength(out) < strle
863 dst_key_buildfilename(const dst_key_t *key, int type, const char *directory, isc_buffer_t *out) argument
1227 buildfilename(dns_name_t *name, dns_keytag_t id, unsigned int alg, unsigned int type, const char *directory, isc_buffer_t *out) argument
[all...]
H A Dsdb.c1033 printnode(dns_db_t *db, dns_dbnode_t *node, FILE *out) { argument
1036 UNUSED(out);
H A Dsdlz.c662 printnode(dns_db_t *db, dns_dbnode_t *node, FILE *out) { argument
665 UNUSED(out);
H A Drbtdb.c789 * Work out how many nodes can be deleted in the time between two
2767 * Copy out re-signing information.
3104 * First we try to figure out if this node is active in
3195 * An error has occurred. Bail out.
5065 printnode(dns_db_t *db, dns_dbnode_t *node, FILE *out) { argument
5075 fprintf(out, "node %p, %u references, locknum = %u\n",
5085 fprintf(out, "\ttype %u", current->type);
5088 fprintf(out, "\t");
5090 fprintf(out,
5103 fprintf(out, "(empt
[all...]
/bind-9.6-ESV-R11/bin/tests/hashes/
H A Dt_hashes.c277 ck(const char *name, const IN *in, const OUT *out) argument
283 d2str(buf, sizeof(buf), dbuf.b, out->digest_len);
289 if (strcasecmp(buf, out->str)) {
293 "should be", out->str);
301 for (l = out->digest_len; l < sizeof(dbuf); ++l) {
304 l-out->digest_len, name, str_name, dbuf.b[l]);
315 IN *in, OUT *out)
327 ck(hname, in, out);
336 t_sha224(IN *in, OUT *out) argument
345 ck("SHA224", in, out);
314 t_hash(const char *hname, HASH_INIT init, UPDATE update, FINAL final, IN *in, OUT *out) argument
366 t_md5hmac(IN *in, OUT *out) argument
380 t_hmac(const char *hname, HMAC_INIT init, UPDATE update, SIGN sign, IN *in, OUT *out) argument
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dfs_test.c104 const char *out; member in struct:test
134 printf("Expected output: >%s<\n", t->out);
138 ATF_REQUIRE(strcmp(atf_fs_path_cstring(&p), t->out) == 0);
335 const char *out; member in struct:test
351 printf("Expected output: >%s<\n", t->out);
358 ATF_REQUIRE(strcmp(atf_fs_path_cstring(&p), t->out) == 0);
H A Dprocess_test.c415 do_fork(const struct base_stream *outfs, void *out, argument
422 outfs->init(out);
428 outfs->process(out, &child);
433 outfs->fini(out);
1053 struct outlc ## _stream out = outuc ## _STREAM(stdout_type); \
1055 do_fork(&out.m_base, &out, &err.m_base, &err); \

Completed in 93 milliseconds