Searched refs:body (Results 1 - 24 of 24) sorted by relevance

/haiku/src/system/libroot/posix/glibc/include/arch/x86/
H A Dasm-syntax.h31 # define L(body) .L##body
33 # define L(body) .L/**/body
37 # define L(body) L##body
39 # define L(body) L/**/body
/haiku/src/system/libroot/posix/glibc/include/arch/x86_64/
H A Dasm-syntax.h24 #define L(body) .L##body
/haiku/src/libs/posix_error_mapper/
H A Dposix_error_mapper.h20 #define WRAPPER_FUNCTION(returnValue, function, parameters, body) \
25 body \
/haiku/src/bin/mail_utils/
H A Dmail.cpp86 BString body; local
89 // Read each line and collect the body text until we get an end of text
94 // End of file or an error happened, just send collected body text.
101 body.Append(line);
105 fprintf(stdout, "\nBody:\n%s\n", body.String());
116 mail.AddContent(body.String(), body.Length());
/haiku/src/add-ons/mail_daemon/outbound_filters/fortune/
H A DFortuneFilter.cpp51 // What we want to do here is to change the message body. To do that we use the
53 // BPositionIO, changing the message body and rendering it back to disk. Of course
86 // Update the message body
87 BTextMailComponent* body = mailMessage.Body(); local
88 body->AppendText(fortuneText);
/haiku/src/kits/network/libnetservices2/
H A DHttpResultPrivate.h40 std::optional<BHttpBody> body; member in struct:BPrivate::Network::HttpResultPrivate
43 // Interim body storage (used while the request is running)
95 // Release any held body target borrow
126 body = BHttpBody{};
129 body = BHttpBody{std::move(bodyString)};
H A DHttpResult.cpp221 return *(fData->body);
225 throw BRuntimeError(__PRETTY_FUNCTION__, "Unexpected error waiting for the body!");
H A DHttpRequest.cpp361 // there is a request body. The current implementation does the validation at the request
362 // generation stage, where GET, HEAD, OPTIONS, CONNECT and TRACE will not submit a body.
425 auto body = std::move(fData->requestBody->input); variable
427 return body;
516 "Transfer body with unknown content length; chunked transfer not supported");
/haiku/src/kits/mail/
H A DMailMessage.cpp158 // quote body text
616 BEmailMessage::SetBody(BTextMailComponent* body) argument
624 fTextBody = body;
634 BTextMailComponent* body = dynamic_cast<BTextMailComponent*>(component); local
635 if (body != NULL)
636 return body;
649 body = dynamic_cast<BTextMailComponent*>(
651 if (body != NULL)
652 return body;
656 body
[all...]
/haiku/src/add-ons/kernel/file_cache/
H A Drule_based_prefetcher.cpp70 struct body { struct
83 void AddBody(struct body *body);
471 struct body *body; local
472 while ((body = (struct body *)list_remove_head_item(&fBodies)) != NULL) {
473 delete body;
487 Rule::AddBody(struct body *body) argument
[all...]
/haiku/src/kits/shared/
H A Dmd5.cpp95 static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) function in namespace:BPrivate
236 body(ctx, ctx->buffer, 64);
240 data = body(ctx, data, size & ~(unsigned long)0x3f);
259 body(ctx, ctx->buffer, 64);
276 body(ctx, ctx->buffer, 64);
/haiku/headers/os/mail/
H A DMailMessage.h53 // These return messages with the body quoted and
108 status_t SetBody(BTextMailComponent* body);
/haiku/src/apps/mail/
H A DEnclosures.cpp79 BMailComponent *body)
86 if (component == body)
91 dynamic_cast<BMIMEMultipartMailContainer *>(component), body);
78 recursive_attachment_search(TEnclosuresView* us, BMailContainer* mail, BMailComponent *body) argument
H A DMailWindow.h89 const BString* body = NULL,
H A DContent.cpp256 strncasecmp (a, "<body", 5) == 0)
2034 BTextMailComponent *body = mail->Body();
2035 if (body == NULL) {
2036 if (mail->SetBody(body = new BTextMailComponent()) < B_OK)
2039 body->SetEncoding(encoding, charset);
2043 body->AppendText(text);
2185 body->AppendText(content);
2313 // PlainTextBodyComponent *body = dynamic_cast<PlainTextBodyComponent *>(container->GetComponent(i));
2315 // if (body && (text = body
[all...]
H A DMailApp.cpp166 BString body; local
180 "[ -body \"<body text>\" ] [ enclosure:<path> ] [ <message to read> ...] \n",
215 else if (strcmp(argv[loop], "-body") == 0 && argv[loop + 1])
216 body = argv[++loop];
238 || body.Length() || enclosure.HasRef("refs"))
242 &body, &enclosure);
H A DMailWindow.cpp2124 const char* bccTo, const BString* body, BMessage* enclosures)
2137 if (body != NULL && body->Length()) {
2138 fContentView->TextView()->SetText(body->String(), body->Length());
2327 // Count the number of characters in the message body which aren't in the
2461 // the content text is always added to make sure there is a mail body
2898 fprintf(stderr, "Could not fetch body: %s\n", strerror(status));
2123 SetTo(const char* mailTo, const char* subject, const char* ccTo, const char* bccTo, const BString* body, BMessage* enclosures) argument
/haiku/headers/posix/
H A Dmath.h413 #define _wrap_expr_typeof(x, y, body) ({ \
416 body;})
/haiku/src/tests/kits/net/netservices2/
H A DHttpProtocolTest.cpp566 auto body = make_exclusive_borrow<BMallocIO>(); local
567 auto result = fSession.Execute(std::move(request), BBorrow<BDataIO>(body), fLoggerMessenger);
571 = std::string(reinterpret_cast<const char*>(body->Buffer()), body->BufferLength());
751 "Request body:\r\n"
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php827 body { background-color: <?php echo BGCOLOR; ?>; }
860 echo "<body>";
862 echo "<body onunload=\"onPageUnload();\">";
909 </body>
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js2237 document.body.classList.remove('connect');
2242 document.body.classList.add('connect');
2248 gSession = new RemoteDesktopSession(document.body, widthInput.value,
/haiku/src/apps/bootmanager/
H A Dbootman.S613 ; see loop body
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.c391 char body[400]; local
393 XDRInPacketGetDynamic(reply, body, &bodyLength);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregcomp.c1276 of OP_OPEN_SUBEXP, the body of the SUBEXP (if any) and OP_CLOSE_SUBEXP. */
1303 bin_tree_t *body = node->left;
1321 tree1 = body ? create_tree (dfa, body, cls, CONCAT) : cls;
1296 bin_tree_t *body = node->left; local

Completed in 291 milliseconds