Searched defs:pos (Results 1 - 18 of 18) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dauto_array.hpp164 auto_array< T >::operator[](int pos) argument
167 return m_ptr[pos];
H A Dprocess_test.cpp302 std::vector< std::string >::size_type pos = 0; local
305 ATF_REQUIRE_EQ(*iter, vector[pos]);
306 pos++;
H A Dtext.cpp98 std::string::size_type pos = 0, newpos = 0; local
99 while (pos < str.length() && newpos != std::string::npos) {
100 newpos = str.find(delim, pos);
101 if (newpos != pos)
102 words.push_back(str.substr(pos, newpos - pos));
103 pos = newpos + delim.length();
H A Dprocess.cpp58 std::size_t pos = 0; local
61 argv[pos] = (*iter).c_str();
62 pos++;
64 INV(pos == c.size());
65 argv[pos] = NULL;
/bind-9.6-ESV-R11/lib/dns/
H A Diptable.c64 isc_uint16_t bitlen, isc_boolean_t pos)
87 if (pos) {
101 if (pos)
116 dns_iptable_merge(dns_iptable_t *tab, dns_iptable_t *source, isc_boolean_t pos) argument
137 if (!pos) {
63 dns_iptable_addprefix(dns_iptable_t *tab, isc_netaddr_t *addr, isc_uint16_t bitlen, isc_boolean_t pos) argument
H A Dacl.c133 * If pos is ISC_TRUE, test whether acl is set to "{ any; }"
134 * If pos is ISC_FALSE, test whether acl is set to "{ none; }"
137 dns_acl_isanyornone(dns_acl_t *acl, isc_boolean_t pos) argument
154 *(isc_boolean_t *) (acl->iptable->radix->head->data[0]) == pos)
264 * If pos is set to false, then the nested ACL is to be negated. This
270 dns_acl_merge(dns_acl_t *dest, dns_acl_t *source, isc_boolean_t pos) argument
336 if (!pos && source->elements[i].negative == ISC_FALSE) {
350 result = dns_iptable_merge(dest->iptable, source->iptable, pos);
H A Djournal.c247 #define POS_VALID(pos) ((pos).offset != 0)
248 #define POS_INVALIDATE(pos) ((pos).offset = 0, (pos).serial = 0)
312 journal_pos_t pos[2]; /*%< Begin/end position */ member in struct:dns_journal::__anon121
759 * Advance '*pos' to the next journal transaction.
762 * *pos refers to a valid journal transaction.
766 * *pos refers to the next journal transaction.
771 * ISC_R_NOMORE *pos pointe
775 journal_next(dns_journal_t *j, journal_pos_t *pos) argument
850 index_add(dns_journal_t *j, journal_pos_t *pos) argument
919 journal_find(dns_journal_t *j, isc_uint32_t serial, journal_pos_t *pos) argument
1234 journal_pos_t pos; local
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Difiter_getifaddrs.c43 struct ifaddrs *pos; /*%< Ptr to current ifaddr */ member in struct:isc_interfaceiter
100 iter->pos = NULL;
133 ifa = iter->pos;
136 if (iter->pos == NULL)
201 if (iter->pos != NULL)
202 iter->pos = iter->pos->ifa_next;
203 if (iter->pos == NULL) {
233 iter->pos = iter->ifaddrs;
H A Difiter_sysctl.c52 unsigned int pos; /* Current offset in member in struct:isc_interfaceiter
130 iter->pos = (unsigned int) -1;
157 REQUIRE (iter->pos < (unsigned int) iter->bufused);
159 ifam = (struct ifa_msghdr *) ((char *) iter->buf + iter->pos);
279 REQUIRE (iter->pos < (unsigned int) iter->bufused);
281 ifam = (struct ifa_msghdr *) ((char *) iter->buf + iter->pos);
283 iter->pos += ifam->ifam_msglen;
285 if (iter->pos >= iter->bufused)
301 iter->pos = 0;
H A Difiter_ioctl.c61 unsigned int pos; /* Current offset in member in struct:isc_interfaceiter
305 iter->pos = (unsigned int) -1;
444 iter->pos == (unsigned int)iter->ifc.ifc_len) {
452 INSIST( iter->pos < (unsigned int) iter->ifc.ifc_len);
454 ifrp = (struct ifreq *)((char *) iter->ifc.ifc_req + iter->pos);
816 if (iter->pos < (unsigned int) iter->ifc.ifc_len) {
818 ifrp = (struct ifreq *)((char *) iter->ifc.ifc_req + iter->pos);
821 iter->pos += sizeof(ifrp->ifr_name) +
825 iter->pos += sizeof(struct ifreq);
828 INSIST(iter->pos
[all...]
/bind-9.6-ESV-R11/contrib/zkt/
H A Dsoaserial.c192 long pos, eos; local
202 pos = ftell (fp); /* mark position */
208 eos = ftell (fp); /* mark first non digit/ws character pos */
210 digits = eos - pos;
223 fseek (fp, pos, SEEK_SET); /* go back to the beginning */
/bind-9.6-ESV-R11/bin/named/
H A Dlwdgrbn.c45 fill_array(int *pos, dns_rdataset_t *rdataset, argument
59 INSIST(*pos < size);
62 rdatas[*pos] = r.base;
63 rdatalen[*pos] = r.length;
65 (*pos)++;
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Ddynstr.c313 size_t pos; local
315 for (pos = ad->m_length; pos > 0 && ad->m_data[pos - 1] != ch; pos--)
318 return pos == 0 ? atf_dynstr_npos : pos - 1;
H A Dlist.c286 size_t pos = 0; local
287 while (pos < idx &&
290 pos++;
305 size_t pos = 0; local
306 while (pos < idx &&
310 pos++;
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c124 const char *pos = contents; local
131 if (memcmp(pos, buffer, count) != 0) {
136 pos += count;
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A Datf-report.cpp649 std::string::size_type pos = str.find(':'); local
650 if (pos == std::string::npos)
653 std::string fmt = str.substr(0, pos);
654 atf::fs::path path = atf::fs::path(str.substr(pos + 1));
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dtests.cpp620 const std::string::size_type pos = tcarg.find(':'); local
621 if (pos == std::string::npos) {
624 const std::string tcname = tcarg.substr(0, pos);
626 const std::string partname = tcarg.substr(pos + 1);
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest-program.cpp333 const std::string::size_type pos = line.find_first_of(":("); local
334 if (pos == std::string::npos) {
338 } else if (line[pos] == ':') {
339 out_state = line.substr(0, pos);
341 out_reason = atf::text::trim(line.substr(pos + 1));
342 } else if (line[pos] == '(') {
343 const std::string::size_type pos2 = line.find("):", pos);
347 out_state = line.substr(0, pos);
348 out_arg = line.substr(pos + 1, pos2 - pos
[all...]

Completed in 225 milliseconds