| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/ |
| tsan_clock_test.cc | 41 SyncClock chunked; local 43 ASSERT_EQ(chunked.size(), 0U); 44 vector.acquire(&cache, &chunked); 46 ASSERT_EQ(chunked.size(), 0U); 47 vector.release(&cache, &chunked); 49 ASSERT_EQ(chunked.size(), 1U); 50 vector.acq_rel(&cache, &chunked); 52 ASSERT_EQ(chunked.size(), 1U); 53 chunked.Reset(&cache); 84 SyncClock chunked; local 113 SyncClock chunked; local 145 SyncClock chunked; local 153 SyncClock chunked; local 161 SyncClock chunked; local 168 SyncClock chunked; local [all...] |
| /src/external/bsd/libevent/dist/include/event2/ |
| http_struct.h | 109 unsigned chunked:1, /* a chunked request */ member in struct:evhttp_request 119 * Chunked data callback - call for each completed chunk if
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| http_struct.h | 110 unsigned chunked:1, /* a chunked request */ member in struct:evhttp_request 120 * Chunked data callback - call for each completed chunk if
|
| /src/external/bsd/wpa/dist/src/wps/ |
| httpread.c | 20 * -- transfer encoding other than chunked 32 * HTTP/1.1, especially chunked data. 70 int chunked; /* nonzero for chunked data */ member in struct:httpread 80 /* The following apply if data is chunked: */ 84 int in_trailer; /* in header fields after data (chunked only)*/ 185 * other than chunked... 187 if (word_eq(hbp, "CHUNKED")) { 188 h->chunked = 1; 314 /* chunked overrides content-length always * [all...] |
| /src/share/examples/refuse/ian/libfetch/ |
| http.c | 114 * I/O functions for decoding chunked streams 120 int chunked; /* chunked mode */ member in struct:httpio 206 if (io->chunked == 0) { 313 _http_funopen(conn_t *conn, int chunked) 323 io->chunked = chunked; 808 int chunked, direct, need_auth, noredirect, verbose; local 837 chunked = 0; 1046 chunked = (strcasecmp(p, "chunked") == 0) [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| histo.c | 188 uint64_t chunked = value | CHUNKSIZE(hg); local 189 int clz = __builtin_clzll((unsigned long long)(chunked));
|
| /src/external/bsd/fetch/dist/libfetch/ |
| http.c | 144 * I/O functions for decoding chunked streams 150 int chunked; /* chunked mode */ member in struct:httpio 225 if (io->chunked == 0) { 353 http_funopen(conn_t *conn, int chunked, int keep_alive, off_t clength) 363 io->chunked = chunked; 875 int chunked, direct, if_modified_since, need_auth, noredirect; local 907 chunked = 0; 1125 chunked = (strcasecmp(p, "chunked") == 0) [all...] |
| /src/external/bsd/unbound/dist/smallapp/ |
| unbound-anchor.c | 874 process_one_header(char* buf, size_t* clen, int* chunked) 884 if(!*chunked) 886 } else if(strncasecmp(buf, "Transfer-Encoding: chunked", 19+7) == 0) { 888 *chunked = 1; 945 int chunked = 0; local 950 if(!process_one_header(buf, clen, &chunked)) 1002 /** read chunked data from connection */ 1016 /* read the chunked start line */ 1043 /* read the chunked body */ 1083 /** read chunked data and zero terminate; len is without zero * [all...] |