Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 41) sorted by relevance

12

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dchunk.c26 cq->first = NULL; in chunkqueue_init()
84 for (c = cq->first; c; ) { in chunkqueue_free()
117 c->next = cq->first; in chunkqueue_prepend_chunk()
118 cq->first = c; in chunkqueue_prepend_chunk()
133 if (cq->first == NULL) { in chunkqueue_append_chunk()
134 cq->first = c; in chunkqueue_append_chunk()
145 for (c = cq->first; c; c = c->next) { in chunkqueue_reset()
327 for (c = cq->first; c; c = c->next) { in chunkqueue_length()
362 return cq->first ? 0 : 1; in chunkqueue_is_empty()
368 for (c = cq->first; c; c = cq->first) { in chunkqueue_remove_finished_chunks()
[all …]
H A Drequest.c296 size_t i, first; in http_request_parse() local
363 proto = con->parse_request->ptr + first; in http_request_parse()
513 first = i+1; in http_request_parse()
521 first = i + 1; in http_request_parse()
525 uri = con->parse_request->ptr + first; in http_request_parse()
526 first = i + 1; in http_request_parse()
597 key_len = i - first; in http_request_parse()
627 if (i == first) { in http_request_parse()
636 key_len = i - first; in http_request_parse()
795 key = con->parse_request->ptr + first; in http_request_parse()
[all …]
H A Dmod_scgi.c90 scgi_proc *first; member
438 scgi_process_free(h->first); in scgi_host_free()
1152 if (df->first) df->first->prev = proc; in SETDEFAULTS_FUNC()
1154 df->first = proc; in SETDEFAULTS_FUNC()
1171 df->first = fp; in SETDEFAULTS_FUNC()
1964 if (host->first == proc) { in scgi_proclist_sort_up()
1967 host->first = proc->next; in scgi_proclist_sort_up()
1968 host->first->prev = NULL; in scgi_proclist_sort_up()
3010 fp->next = host->first; in TRIGGER_FUNC()
3011 if (host->first) { in TRIGGER_FUNC()
[all …]
H A Dmod_evhost.c170 int first = 1; in mod_evhost_parse_host() local
177 if(first) first = 0; in mod_evhost_parse_host()
181 first = 1; in mod_evhost_parse_host()
H A Dmod_fastcgi.c112 fcgi_proc *first; member
577 fastcgi_process_free(h->first); in fastcgi_host_free()
1404 proc->next = host->first; in SETDEFAULTS_FUNC()
1405 if (host->first) host->first->prev = proc; in SETDEFAULTS_FUNC()
1407 host->first = proc; in SETDEFAULTS_FUNC()
1426 host->first = proc; in SETDEFAULTS_FUNC()
2130 req_c = req_cq->first; in fcgi_create_env()
2151 req_c = req_cq->first; in fcgi_create_env()
2397 if (!hctx->rb->first) return -1; in fastcgi_get_packet()
2527 hctx->rb->first = cq_first; in fcgi_demux_response()
[all …]
H A Dchunk.h39 chunk *first; member
H A Dconnections.c935 for (c = cq->first; c;) {
936 if (cq->first == c && c->mem->used == 0) {
940 cq->first = c->next;
941 if (cq->first == NULL) cq->last = NULL;
947 c = cq->first;
987 for (c = cq->first; c; c = c->next) {
1036 for (c = cq->first; c; c = c->next) {
1068 for (c = cq->first; c && (dst_cq->bytes_in != (off_t)con->request.content_length); c = c->next) {
H A Dnetwork_write.c30 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) { in network_write_chunkqueue_write()
H A Dnetwork_freebsd_sendfile.c37 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) { in network_write_chunkqueue_freebsdsendfile()
H A Dnetwork_solaris_sendfilev.c44 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) { in network_write_chunkqueue_solarissendfilev()
H A Dnetwork_mtcp_writev.c36 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) {
349 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) { in network_write_chunkqueue_mtcp_writev()
H A Dnetwork_openssl.c61 for(c = cq->first; (max_bytes > 0) && (NULL != c); c = c->next) { in network_write_chunkqueue_openssl()
/mOS-networking-stack/core/src/
H A Dtcp_stream_queue.c61 sq->first = sq->last = 0; in CreateInternalStreamQueue()
110 stream = sq->array[sq->first++]; in StreamInternalDequeue()
112 if (sq->first >= sq->size) { in StreamInternalDequeue()
113 sq->first = 0; in StreamInternalDequeue()
H A Dutil.c70 static int first = 1; in GetRSSHash() local
73 if (first) { in GetRSSHash()
75 first = 0; in GetRSSHash()
/mOS-networking-stack/util/
H A Drss.c116 static int first = 1; in GetRSSHash() local
119 if (first) { in GetRSSHash()
121 first = 0; in GetRSSHash()
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/
H A DMakefile.in168 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
169 if test "$$first" != "."; then \
170 if test "$$first" = ".."; then \
175 if test "$$first2" = "$$first"; then \
180 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/
H A DMakefile.in168 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
169 if test "$$first" != "."; then \
170 if test "$$first" = ".."; then \
175 if test "$$first2" = "$$first"; then \
180 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/www/
H A DMakefile.in168 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
169 if test "$$first" != "."; then \
170 if test "$$first" = ".."; then \
175 if test "$$first2" = "$$first"; then \
180 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/
H A DMakefile.in199 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
200 if test "$$first" != "."; then \
201 if test "$$first" = ".."; then \
206 if test "$$first2" = "$$first"; then \
211 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/m4/
H A Dltoptions.m4117 put the 'dlopen' option into LT_INIT's first parameter.])
153 put the 'win32-dll' option into LT_INIT's first parameter.])
309 the 'fast-install' option into LT_INIT's first parameter.])
316 the 'disable-fast-install' option into LT_INIT's first parameter.])
415 put the 'pic-only' option into LT_INIT's first parameter.])
/mOS-networking-stack/core/src/include/
H A Dtcp_stream_queue.h44 int first; member
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A DMakefile.in185 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
186 if test "$$first" != "."; then \
187 if test "$$first" = ".."; then \
192 if test "$$first2" = "$$first"; then \
197 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/
H A DMakefile.in410 first=`echo "$$dir1" | sed -e "$$sed_first"`; \
411 if test "$$first" != "."; then \
412 if test "$$first" = ".."; then \
417 if test "$$first2" = "$$first"; then \
422 dir0="$$dir0"/"$$first"; \
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/
H A Dconfiguration.txt344 As auth should be done first, move it before all executing modules (like
347 rewrites, redirects and access should be first, followed by auth and
484 The list is compared top down and the first match is taken. This is
H A Dstatus.txt33 We need to load the module first. ::

12