Searched refs:headers (Results 1 - 21 of 21) sorted by relevance

/haiku/build/scripts/
H A Dbuild_cross_tools139 headers="`find $sourceDir -name \*\.h`"
140 headers="`echo $headers | sed -e s@$sourceDir/@@g`"
141 for f in $headers; do
148 copy_headers $haikuSourceDir/headers/config $tmpIncludeDir/config
149 copy_headers $haikuSourceDir/headers/os $tmpIncludeDir/os
150 copy_headers $haikuSourceDir/headers/posix $tmpIncludeDir/posix
165 --with-headers=$tmpIncludeDir --with-libs=$tmpLibDir $gccConfigureArgs \
196 # Symlink the built-in C++ headers path to the sys-include directory. This is
204 # remove the system headers fro
[all...]
H A Dbuild_cross_tools_gcc4165 tmpIncludeDir="$sysrootDir/boot/system/develop/headers"
220 headers="$(find $sourceDir -name \*\.h)"
221 headers="$(echo $headers | sed -e s@$sourceDir/@@g)"
222 for f in $headers; do
229 copy_headers "$haikuSourceDir/headers/config" "$tmpIncludeDir/config"
230 copy_headers "$haikuSourceDir/headers/os" "$tmpIncludeDir/os"
231 copy_headers "$haikuSourceDir/headers/posix" "$tmpIncludeDir/posix"
272 # remove the system headers from the installation dir
/haiku/src/tests/kits/net/service/
H A Dproxy.py57 # Collect headers from client which will be sent to the downstream
60 for header_name in self.headers:
63 for header_value in self.headers.get_all(header_name):
68 x_forwarded_for_header = self.headers.get('X-Forwarded-For', None)
76 request_body_length = int(self.headers.get('Content-Length', '0'))
89 for header_name, header_value in response.headers.items():
96 int(response.headers.get('Content-Length', '0'))
102 connection_header_value = self.headers.get('Connection', None)
H A Dtestserver.py136 for e in self.headers.get('Accept-Encoding', '').split(',')
152 for header in self.headers:
153 for header_value in self.headers.get_all(header):
158 # server port will be stripped from these headers when
171 self.headers.get('Content-Type', 'text/plain'))
180 content_length = int(self.headers.get('Content-Length', 0))
231 authorization = self.headers.get('Authorization', None)
265 authorization = self.headers.get('Authorization', None)
H A DHttpTest.cpp64 const BHttpHeaders& headers = http_result.Headers(); local
66 for (int32 i = 0; i < headers.CountHeaders(); ++i) {
67 const BHttpHeader& header = headers.HeaderAt(i);
/haiku/src/tests/kits/net/netservices2/
H A Dproxy.py57 # Collect headers from client which will be sent to the downstream
60 for header_name in self.headers:
63 for header_value in self.headers.get_all(header_name):
68 x_forwarded_for_header = self.headers.get('X-Forwarded-For', None)
76 request_body_length = int(self.headers.get('Content-Length', '0'))
89 for header_name, header_value in response.headers.items():
96 int(response.headers.get('Content-Length', '0'))
102 connection_header_value = self.headers.get('Connection', None)
H A Dtestserver.py136 for e in self.headers.get('Accept-Encoding', '').split(',')
152 for header in self.headers:
153 for header_value in self.headers.get_all(header):
158 # server port will be stripped from these headers when
171 self.headers.get('Content-Type', 'text/plain'))
180 content_length = int(self.headers.get('Content-Length', 0))
231 authorization = self.headers.get('Authorization', None)
265 authorization = self.headers.get('Authorization', None)
/haiku/3rdparty/qtcreator/
H A Dcreate_project_file.sh36 find headers -type d | sed "s@^@../../@" >>$DIR/$NAME.includes
/haiku/src/kits/mail/
H A DMailComponent.cpp38 // Special field names in the headers which specify the character set (int32)
39 // and encoding (int8) to use when converting the headers from UTF-8 to the
125 headers.RemoveName(key);
127 headers.AddString(key, value);
130 // the headers is the one which affects all the headers. There used to be
131 // separate settings for each item in the headers, but it never actually
134 && headers.ReplaceInt32 (kHeaderCharsetString, charset) != B_OK)
135 headers.AddInt32(kHeaderCharsetString, charset);
137 && headers
[all...]
H A Dmail_util.cpp355 // character subsets. For E-mail headers (and other uses), it needs to be
357 // lost or other weird things happen in the headers). Note that we can't
590 // get encoded (because MIME headers get the quotes parsed before character
1372 /*! Parses a mail header and fills the headers BMessage
1375 parse_header(BMessage &headers, BPositionIO &input) argument
1404 headers.AddString(header.String(), delimiter);
/haiku/src/apps/haikudepot/server/
H A DServerSettings.h22 static void AugmentHeaders(BHttpHeaders& headers);
H A DServerSettings.cpp93 ServerSettings::AugmentHeaders(BHttpHeaders& headers) argument
95 headers.AddHeader("User-Agent", GetUserAgent());
H A DAbstractServerProcess.cpp347 BHttpHeaders headers;
348 ServerSettings::AugmentHeaders(headers);
356 headers.AddHeader("If-Modified-Since", ifModifiedSinceHeader);
371 fRequest->SetHeaders(headers);
H A DWebAppInterface.cpp1011 BHttpHeaders headers; local
1012 headers.AddHeader("Content-Type", "application/json");
1013 headers.AddHeader("Accept", "application/json");
1014 ServerSettings::AugmentHeaders(headers);
1021 request->SetHeaders(headers);
1107 BHttpHeaders headers; local
1108 ServerSettings::AugmentHeaders(headers);
1115 request->SetHeaders(headers);
/haiku/src/tests/kits/mail/
H A Dheader_test.cpp155 BMessage headers; local
156 parse_header(headers, bufferIO);
/haiku/headers/private/netservices/
H A DHttpRequest.h50 void SetHeaders(const BHttpHeaders& headers);
55 void AdoptHeaders(BHttpHeaders* const headers);
/haiku/headers/private/mail/
H A Dmail_util.h91 status_t parse_header(BMessage &headers, BPositionIO &input);
/haiku/headers/os/mail/
H A DMailComponent.h21 // Special field names in the headers which specify the character set (int32)
22 // and encoding (int8) to use when converting the headers from UTF-8 to the
90 BMessage headers; member in class:BMailComponent
/haiku/src/kits/network/libnetservices/
H A DHttpRequest.cpp265 BHttpRequest::SetHeaders(const BHttpHeaders& headers) argument
267 AdoptHeaders(new(std::nothrow) BHttpHeaders(headers));
292 BHttpRequest::AdoptHeaders(BHttpHeaders* const headers) argument
295 fOptHeaders = headers;
543 "%" B_PRId32 " headers and %" B_PRIuSIZE " bytes of data remaining",
633 // server to not send any data (only the headers)
965 // HTTP 1.1 additional headers
986 // Classic HTTP headers
993 // Optional range requests headers
1022 // Required headers fo
[all...]
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c2097 /* Read the MIME headers. */
3278 ** CGI can return special headers such as "Status:" and "Location:" which
3280 ** be the very first line written out, we have to accumulate all the headers
3282 ** out the saved headers and proceed to echo the rest of the response.
3290 char* headers; local
3301 /* Slurp in all headers. */
3303 httpd_realloc_str( &headers, &headers_size, 500 );
3315 br = &(headers[headers_len]);
3318 httpd_realloc_str( &headers, &headers_size, headers_len + r );
3319 (void) memmove( &(headers[headers_le
[all...]
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex157 headers.

Completed in 220 milliseconds