HomeSort by: relevance | last modified time | path
    Searched refs:Request (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/
DIPrinter.h 34 struct Request {
44 virtual void print(const Request &Request, const DILineInfo &Info) = 0;
45 virtual void print(const Request &Request, const DIInliningInfo &Info) = 0;
46 virtual void print(const Request &Request, const DIGlobal &Global) = 0;
47 virtual void print(const Request &Request,
50 virtual void printInvalidCommand(const Request &Request
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 10 /// This file provides definitions to model concepts of MPI. The mpi::Request
27 class Request {
31 Request(State S) : CurrentState{S} {}
37 bool operator==(const Request &ToCompare) const {
50 clang::ento::mpi::Request>
MPIBugReporter.cpp 24 const CallEvent &MPICallEvent, const ento::mpi::Request &Req,
30 ErrorText = "Double nonblocking on request " +
43 RequestRegion, "Request is previously used by nonblocking call here. "));
50 const ento::mpi::Request &Req, const MemRegion *const RequestRegion,
53 std::string ErrorText{"Request " + RequestRegion->getDescriptiveName() +
63 RequestRegion, "Request is previously used by nonblocking call here. "));
73 std::string ErrorText{"Request " + RequestRegion->getDescriptiveName() +
95 const Request *const Req = N->getState()->get<RequestMap>(RequestRegion);
98 const Request *const PrevReq =
101 // Check if request was previously unused or in a different state
    [all...]
MPIBugReporter.h 34 /// Report duplicate request use by nonblocking calls without intermediate
38 /// \param Req request that was used by two nonblocking calls in sequence
39 /// \param RequestRegion memory region of the request
43 const Request &Req,
50 /// \param Req request that is not matched by a wait
51 /// \param RequestRegion memory region of the request
54 void reportMissingWait(const Request &Req,
59 /// Report a wait on a request that has not been used at all before.
61 /// \param CE wait call that uses the request
62 /// \param RequestRegion memory region of the request
    [all...]
MPIChecker.cpp 41 const Request *const Req = State->get<RequestMap>(MR);
44 if (Req && Req->CurrentState == Request::State::Nonblocking) {
52 State = State->set<RequestMap>(MR, Request::State::Nonblocking);
79 // Check all request regions used by the wait function.
81 const Request *const Req = State->get<RequestMap>(ReqRegion);
82 State = State->set<RequestMap>(ReqRegion, Request::State::Wait);
114 if (Req.second.CurrentState == Request::State::Nonblocking) {
158 // A single request is passed to MPI_Waitall.
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 186 void PlainPrinterBase::print(const Request &Request, const DILineInfo &Info) {
187 printHeader(*Request.Address);
192 void PlainPrinterBase::print(const Request &Request,
194 printHeader(*Request.Address);
204 void PlainPrinterBase::print(const Request &Request, const DIGlobal &Global) {
205 printHeader(*Request.Address);
214 void PlainPrinterBase::print(const Request &Request
    [all...]
  /src/external/gpl3/autoconf/dist/lib/Autom4te/
Makefile.am 27 Request.pm \
Request.pm 17 package Autom4te::Request;
21 Autom4te::Request - a single m4 run request
25 use Autom4te::Request;
54 # Serialize a request or all the current requests.
71 # Does this request covers all the @MACRO.
C4che.pm 21 Autom4te::C4che - a single m4 run request
34 use Autom4te::Request;
40 =item @request
45 refer to another scope, and @request would not be updated. It used to
51 use vars qw(@request);
55 Find a request with the same path and input.
63 foreach (@request)
82 Create and register a request for these path and input.
86 # $REQUEST-OBJ
95 # path and input are the only ID for a request object
117 sub request ($%) subroutine
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 74 static void print(const Request &Request, Expected<T> &ResOrErr,
78 Printer.print(Request, *ResOrErr);
87 Request, EI, "LLVMSymbolizer: error reading file: ");
91 Printer.print(Request, T());
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCDynamicLibrarySearchGenerator.cpp 44 TargetProcessControl::LookupRequest Request(H, LookupSymbols);
45 auto Result = TPC.lookupSymbols(Request);
TPCIndirectionUtils.cpp 109 jitlink::JITLinkMemoryManager::SegmentsRequestMap Request;
110 Request[TrampolinePagePermissions] = {PageSize, static_cast<size_t>(PageSize),
112 auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
294 jitlink::JITLinkMemoryManager::SegmentsRequestMap Request;
295 Request[ResolverBlockPermissions] = {TPC.getPageSize(),
297 auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
363 jitlink::JITLinkMemoryManager::SegmentsRequestMap Request;
364 Request[StubPagePermissions] = {PageSize, static_cast<size_t>(StubBytes),
366 Request[PointerPagePermissions] = {PageSize, 0, PointerBytes};
367 auto Alloc = TPC.getMemMgr().allocate(nullptr, Request);
    [all...]
TargetProcessControl.cpp 68 SelfTargetProcessControl::lookupSymbols(ArrayRef<LookupRequest> Request) {
71 for (auto &Elem : Request) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLinkMemoryManager.h 105 /// The request argument describes the segment sizes and permisssions being
108 allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) = 0;
115 allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) override;
  /src/external/gpl3/gdb.old/dist/gdb/
reply_mig_hack.awk 52 parse_phase == 3 && /} Request/ {
65 # This won't be accurate in case of unions being used in the Request struct,
81 # We've know everything we need; now just wait for the end of the Request
88 # This won't be accurate in case of unions being used in the Request struct,
121 # of mig's Reply structure is also the size of the alternate Request
  /src/external/gpl3/gdb/dist/gdb/
reply_mig_hack.awk 52 parse_phase == 3 && /} Request/ {
65 # This won't be accurate in case of unions being used in the Request struct,
81 # We've know everything we need; now just wait for the end of the Request
88 # This won't be accurate in case of unions being used in the Request struct,
121 # of mig's Reply structure is also the size of the alternate Request
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkMemoryManager.cpp 21 const SegmentsRequestMap &Request) {
88 for (auto &KV : Request) {
92 return make_error<StringError>("Cannot request higher than page "
110 for (auto &KV : Request) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRPCTargetProcessControl.h 152 const SegmentsRequestMap &Request) override {
156 for (auto &KV : Request) {
170 dbgs() << "Orc remote memmgr got request:\n";
171 for (auto &KV : Request)
193 "Number of target allocations does not match request",
312 lookupSymbols(ArrayRef<LookupRequest> Request) override {
314 for (auto &E : Request) {
324 for (auto &R : Request) {
OrcRemoteTargetClient.h 347 const SegmentsRequestMap &Request) {
350 if (Error Err = MM->allocateHostBlocks(Request))
389 Error allocateHostBlocks(const SegmentsRequestMap &Request) {
396 auto TotalSize = calcTotalAllocSize(Request, TargetPageSize);
416 for (auto &KV : Request) {
498 calcTotalAllocSize(const SegmentsRequestMap &Request,
501 for (const auto &KV : Request) {
505 return make_error<StringError>("Cannot request alignment higher than "
539 const SegmentsRequestMap &Request) override {
540 return RPCMMAlloc::Create(Client, Id, Request);
    [all...]
TargetProcessControl.h 134 lookupSymbols(ArrayRef<LookupRequest> Request) = 0;
183 lookupSymbols(ArrayRef<LookupRequest> Request) override;
  /src/sys/dev/usb/
if_atu.c 284 uint8_t request, uint16_t value, uint16_t index, uint16_t length,
293 req.bRequest = request;
301 "len=%02x\n", device_xname(sc->atu_dev), request,
352 * all other drivers (including Windoze) request 40 bytes of status
354 * buffer if we just request those 6 bytes in the first place :)
411 struct atu_cmd_set_mib request; local
418 memset(&request, 0, sizeof(request));
420 request.AtCmd = CMD_SET_MIB;
421 USETW(request.AtSize, size + 4)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
04-client_auth.conf 6 test-1 = 1-client-auth-flex-request
12 test-7 = 7-client-auth-TLSv1-request
18 test-13 = 13-client-auth-TLSv1.1-request
24 test-19 = 19-client-auth-TLSv1.2-request
30 test-25 = 25-client-auth-DTLSv1-request
36 test-31 = 31-client-auth-DTLSv1.2-request
66 [1-client-auth-flex-request]
67 ssl_conf = 1-client-auth-flex-request-ssl
69 [1-client-auth-flex-request-ssl]
70 server = 1-client-auth-flex-request-serve
    [all...]
26-tls13_client_auth.conf 6 test-1 = 1-client-auth-TLSv1.3-request
11 test-6 = 6-client-auth-TLSv1.3-request-post-handshake
16 test-11 = 11-client-auth-TLSv1.3-request-force-client-post-handshake
17 test-12 = 12-client-auth-TLSv1.3-request-force-server-post-handshake
18 test-13 = 13-client-auth-TLSv1.3-request-force-both-post-handshake
48 [1-client-auth-TLSv1.3-request]
49 ssl_conf = 1-client-auth-TLSv1.3-request-ssl
51 [1-client-auth-TLSv1.3-request-ssl]
52 server = 1-client-auth-TLSv1.3-request-server
53 client = 1-client-auth-TLSv1.3-request-clien
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
OrcRPCTPCServer.h 472 reserveMemory(const orcrpctpc::ReserveMemRequest &Request) {
478 for (const auto &E : Request) {
503 for (const auto &E : Request) {
553 lookupSymbols(const std::vector<orcrpctpc::RemoteLookupRequest> &Request) {
556 for (const auto &E : Request) {
  /src/libexec/httpd/
printenv.lua 6 -- Keep in mind that bozohttpd forks for each request when started in
50 httpd.print('<h2>Request Headers</h2>')

Completed in 30 milliseconds

1 2