Searched defs:end (Results 1 - 24 of 24) sorted by relevance

/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/tools/idnconv/
H A Dselectiveencode.c68 char *start, *end; local
100 * Next we scan forwards looking for the end of the region.
102 end = non_ascii + idn_utf8_mblen(non_ascii);
103 while (!is_domain_delimiter(*end))
104 end += idn_utf8_mblen(end);
105 *endp = end;
H A Didnconv.c436 * Trim newline at the end. This is needed for
575 * Trim newline at the end. This is needed for
790 char *end; local
796 v = strtoul(p, &end, 16);
797 if (*end != '\0') {
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dtext.c100 const char *end; local
107 end = str + strlen(str);
108 INV(*end == '\0');
110 while (iter < end) {
116 ptr = end;
H A Ddynstr.c251 size_t beg, size_t end)
256 if (end == atf_dynstr_npos || end > src->m_length)
257 end = src->m_length;
259 return atf_dynstr_init_raw(ad, src->m_data + beg, end - beg);
250 atf_dynstr_init_substr(atf_dynstr_t *ad, const atf_dynstr_t *src, size_t beg, size_t end) argument
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Dfilechecker.c224 char *end; local
234 *vp = strtoul(p, &end, 16);
235 if (end == p) {
239 p = end;
H A Dfilemapper.c310 char *end; local
320 *vp = strtoul(p, &end, 16);
321 if (end == p) {
325 p = end;
H A Dconverter.c1175 char *end; local
1177 v = strtoul(from + 3, &end, 16);
1178 ullen = end - (from + 3);
1179 if (*end == '}' && ullen > 1 && ullen < 8) {
1181 from = end + 1;
/bind-9.6-ESV-R11/lib/isc/
H A Dstring.c62 isc_string_touint64(char *source, char **end, int base) { argument
70 *end = source;
88 *end = source;
97 /* end ? */
99 *end = s;
102 /* end ? */
104 *end = s;
109 *end = source;
115 *end = source;
121 *end
[all...]
/bind-9.6-ESV-R11/contrib/query-loc-0.4.0/
H A Dloc.c356 u_char *endOfMsg; /* need to know the end of the message */
389 * Keep track of the end of the message so we don't
477 } /* end of while */
489 struct list_in_addr *result, *end; local
500 u_char *endOfMsg; /* need to know the end of the message */
510 end = NULL;
532 * Keep track of the end of the message so we don't
569 if (end == NULL)
574 end = result;
578 end
[all...]
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Drbt.h162 * non-NULL, 'name' will end up pointing to the name data and offsets that are
203 dns_rbtnode_t * end; member in struct:dns_rbtnodechain
397 * indicated by chain->end being NULL or dns_rbtnodechain_current
430 * point when DNS_RBTFIND_NOEXACT is set, so if you end up using a chain
885 * hiding the back-end. The usage is the same as that of isc_refcount_xxx().
/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Drrsig_46.c95 char *end; local
99 u64 = u = strtoul(DNS_AS_STR(token), &end, 10);
100 if (u == ULONG_MAX || *end != 0)
116 char *end; local
120 u64 = u = strtoul(DNS_AS_STR(token), &end, 10);
121 if (u == ULONG_MAX || *end != 0)
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c93 char *end; local
94 while ((end = strchr(iter, '\n')) != NULL) {
95 *end = '\0';
98 iter = end + 1;
H A Dtc.c745 atf_map_citer_t end, iter; local
748 end = atf_map_end_c(&tc->pimpl->m_config);
749 return !atf_equal_map_citer_map_citer(iter, end);
755 atf_map_citer_t end, iter; local
758 end = atf_map_end_c(&tc->pimpl->m_vars);
759 return !atf_equal_map_citer_map_citer(iter, end);
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dprocess.cpp59 for (typename C::const_iterator iter = c.begin(); iter != c.end();
155 impl::argv_array::end(void) function in class:impl::argv_array
158 return m_args.end();
/bind-9.6-ESV-R11/bin/named/
H A Dmain.c335 const char *end = strchr(arg, ','); local
337 if (end == NULL)
338 end = arg + strlen(arg);
339 arglen = end - arg;
349 if (*end == '\0')
351 arg = end + 1;
/bind-9.6-ESV-R11/lib/dns/
H A Drcode.c341 char *text, *end; local
353 end = source->base + source->length;
356 while (text < end) {
359 char *delim = memchr(text, '|', end - text);
363 len = end - text;
H A Dxfrin.c59 * from complaining about "end-of-loop code not reached".
150 isc_time_t end; /*%< End time of the transfer */ member in struct:dns_xfrin_ctx
485 * We need it to recognize the end of an IXFR.
1412 isc_time_now(&xfr->end);
1413 msecs = isc_time_microdiff(&xfr->end, &xfr->start) / 1000;
H A Djournal.c78 * the "end" position in the header. The latter will
102 * from complaining about "end-of-loop code not reached".
180 * and end of the journal, and in the journal index to locate
213 journal_rawpos_t end; member in struct:__anon112::__anon113
253 journal_pos_t end; member in struct:__anon117
289 #define JOURNAL_EMPTY(h) ((h)->begin.offset == (h)->end.offset)
312 journal_pos_t pos[2]; /*%< Begin/end position */
354 journal_pos_decode(&raw->h.end, &cooked->end);
364 journal_pos_encode(&raw->h.end,
[all...]
H A Dmasterdump.c1439 isc_time_t end; local
1441 isc_time_now(&end);
1447 usecs = isc_time_microdiff(&end, &start);
H A Drbtdb.c799 isc_time_t end; local
804 isc_time_now(&end);
809 usecs = isc_time_microdiff(&end, start);
2174 goto end;
2403 end:
3717 * If we've got all we need, end the search.
3728 * If we've got all we need, end the search.
5514 * We always add a changed record, even if no changes end up
/bind-9.6-ESV-R11/contrib/zkt/
H A Dzconf.c298 char *end, *val, *p; local
317 /* Get the end of the first argument */
318 end = &buf[strlen(buf)-1];
319 while ( p < end && !ISDELIM (*p) ) /* Skip until delim */
324 while ( p < end && ISDELIM (*p) ) /* Skip delim chars */
334 while ( p <= end && *p && *p != *val )
339 else /* Otherwise check if there is any comment char at the end */
341 while ( p < end && *p && !ISCOMMENT(p) )
926 fprintf (stderr, "end at least one max_ttl (%ld) before the end o
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A Datf-check.cpp366 std::istream_iterator< char > begin(stream), end; local
368 std::copy(begin, end, out);
582 !ok && iter != checks.end(); iter++) {
659 std::istream_iterator< char > begin(ifs), end; local
665 std::copy(begin, end, obegin);
683 iter != checks.end(); iter++) {
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c468 char *end; local
476 value = strtoul(test_int, &end, 10);
478 if ((errno == ERANGE) || (*end != '\0') || (value > UINT_MAX))
1092 * end of the input, but we are meant to run through it multiple times
2020 : "end of file"));
/bind-9.6-ESV-R11/bin/dig/
H A Ddighost.c421 * ISC_R_NOSPACE if that would advance p past 'end'.
424 append(const char *text, int len, char **p, char *end) { argument
425 if (len > end - *p)
433 reverse_octets(const char *in, char **p, char *end) { argument
438 result = reverse_octets(dot + 1, p, end);
441 result = append(".", 1, p, end);
448 return (append(in, len, p, end));
486 char *end = reverse + len; local
489 result = reverse_octets(value, &p, end);
493 result = append(".in-addr.arpa.", 15, &p, end);
[all...]

Completed in 601 milliseconds