Searched refs:eos (Results 1 - 14 of 14) sorted by relevance

/freebsd-10-stable/contrib/apr-util/misc/
H A Dapu_dso.c122 char *eos = NULL; local
152 if (!eos) {
153 eos = path;
159 eos = apr_cpystrn(path, ((char**)paths->elts)[i], sizeof(path));
160 if ((eos > path) && (eos - path < sizeof(path) - 1))
161 *(eos++) = '/';
163 apr_cpystrn(eos, module, sizeof(path) - (eos - path));
178 eos
[all...]
/freebsd-10-stable/crypto/openssl/crypto/asn1/
H A Da_d2i_fp.c152 int eos = 0; local
204 eos++;
205 if (eos < 0) {
210 } else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC)) {
211 /* eos value, so go back and read another header */
212 eos--;
213 if (eos <= 0)
266 if (eos <= 0) {
H A Da_bytes.c293 c->eos = ASN1_const_check_infinite_end(&c->p,
295 if (c->eos)
H A Dasn1_lib.c287 if ((c->inf == (1 | V_ASN1_CONSTRUCTED)) && (!c->eos)) {
332 c->eos = 0;
H A Dasn1.h174 int eos; /* end of sequence read for indefinite member in struct:asn1_ctx_st
189 int eos; /* end of sequence read for indefinite member in struct:asn1_const_ctx_st
H A Dasn1_mac.h126 (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
/freebsd-10-stable/sys/dev/ieee488/
H A Dugpib.h113 int ibdev(int boardID, int pad, int sad, int tmo, int eot, int eos);
116 int ibeos(int handle, int eos);
H A Dibfoo_int.h130 int eos; member in struct:ibarg
H A Dibfoo.c82 int eos; member in struct:handle
358 if (h->eos & REOS) {
359 upd7210_wr(u, EOSR, h->eos & 0xff);
362 if (h->eos & XEOS) {
363 upd7210_wr(u, EOSR, h->eos & 0xff);
366 if (h->eos & BIN)
584 h->eos = ib->ap->eos;
608 ib->ap->__iberr = ib->h->eos;
609 ib->h->eos
[all...]
/freebsd-10-stable/lib/libgpib/
H A Dibfoo.c150 ibdev (int boardID, int pad, int sad, int tmo, int eot, int eos) argument
160 io.eos = eos;
191 ibeos (int handle, int eos) argument
197 io.eos = eos;
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dhttp.c4265 /* Return true if the string starting at s and ending immediately before eos
4269 scheme_ok(const char *s, const char *eos) argument
4272 EVUTIL_ASSERT(eos >= s);
4273 if (s == eos)
4277 while (++s < eos) {
4287 /* Return true iff [s..eos) is a valid userinfo */
4289 userinfo_ok(const char *s, const char *eos) argument
4291 while (s < eos) {
4296 else if (*s == '%' && s+2 < eos &&
4307 regname_ok(const char *s, const char *eos) argument
4324 parse_port(const char *s, const char *eos) argument
4342 bracket_addr_ok(const char *s, const char *eos) argument
4386 parse_authority(struct evhttp_uri *uri, char *s, char *eos) argument
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dfs_x.c120 svn_boolean_t eos = FALSE;
124 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eos, scratch_pool));
125 if (buf->len == 0 && eos)
141 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eos, scratch_pool));
142 if (!eos && strncmp(buf->data, "layout sharded ", 15) == 0)
119 svn_boolean_t eos = FALSE; local
/freebsd-10-stable/contrib/libpcap/
H A Dpcap-dlpi.c787 char *eos; local
805 unit = strtol(cp, &eos, 10);
806 if (*eos != '\0') {
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs_fs.c482 svn_boolean_t eos = FALSE;
504 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eos, pool));
505 if (buf->len == 0 && eos)
525 while (!eos)
527 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eos, pool));
480 svn_boolean_t eos = FALSE; local

Completed in 330 milliseconds