HomeSort by: relevance | last modified time | path
    Searched refs:Request (Results 1 - 25 of 27) 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/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/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>')
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/dcn21/
amdgpu_display_mode_vba_21.c 1098 } Request = REQ_NA;
1106 Request = REQ_256Bytes;
1129 Request = REQ_128BytesNonContiguous;
1131 Request = REQ_128BytesContiguous;
1136 Request = REQ_256Bytes;
1138 Request = REQ_128BytesContiguous;
1142 Request = REQ_256Bytes;
1144 Request = REQ_128BytesContiguous;
1146 Request = REQ_128BytesNonContiguous;
1150 Request = REQ_256Bytes
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 345 allocate(const JITLinkDylib *JD, const SegmentsRequestMap &Request) override {
394 for (auto &KV : Request) {
398 return make_error<StringError>("Cannot request higher than page "
449 // Round slab request up to page size.
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
curl.d 45 $(MREF_ALTTEXT range, std,range) that performs the request in another
110 // Post and print out content line by line. The request is done in another thread.
138 headers are written to stdout and the data is ignored. If the request should be
141 information. Finally the HTTP request is effected by calling perform(), which is
260 private struct Request(T)
266 private Request!T recvReq(T=char)(Socket s)
612 * postDict = data to send as the body of the request. An associative array
615 * postData = data to send as the body of the request. An array
714 * putData = data to send as the body of the request. An array
844 /** HTTP options request
    [all...]
  /src/sys/lib/libkern/arch/hppa/
milli.S 237 eirr: .equ 23 ; External Interrupt Request

Completed in 57 milliseconds

1 2