| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | DIPrinter.h | 34 struct Request { struct 44 virtual void print(const Request &Request, const DILineInfo &Info) = 0; argument 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, 53 virtual bool printError(const Request &Request, 91 void print(const Request &Request, const DILineInfo &Info) override; 92 void print(const Request &Request, const DIInliningInfo &Info) override; 93 void print(const Request &Request, const DIGlobal &Global) override; [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 184 void PlainPrinterBase::print(const Request &Request, const DILineInfo &Info) { in print() argument 185 printHeader(*Request.Address); in print() 190 void PlainPrinterBase::print(const Request &Request, in print() argument 192 printHeader(*Request.Address); in print() 202 void PlainPrinterBase::print(const Request &Request, const DIGlobal &Global) { in print() argument 203 printHeader(*Request.Address); in print() 216 void PlainPrinterBase::print(const Request &Request, in print() argument 218 printHeader(*Request.Address); in print() 263 void PlainPrinterBase::printInvalidCommand(const Request &Request, in printInvalidCommand() argument 268 bool PlainPrinterBase::printError(const Request &Request, in printError() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Debuginfod/ |
| H A D | HTTPServer.cpp | 31 bool llvm::streamFile(HTTPServerRequest &Request, StringRef FilePath) { in streamFile() argument 35 Request.setResponse({404u, "text/plain", "Could not open file to read.\n"}); in streamFile() 45 Request.setResponse({404u, "text/plain", "Could not memory-map file.\n"}); in streamFile() 51 Request.setResponse({200u, "application/octet-stream", MB->getBufferSize(), in streamFile() 68 HTTPServerRequest &Request) { in expandUrlPathMatches() argument 72 Request.UrlPathMatches.push_back(it); in expandUrlPathMatches() 74 Request.UrlPath = it; in expandUrlPathMatches() 80 HTTPServerRequest::HTTPServerRequest(const httplib::Request &HTTPLibRequest, in HTTPServerRequest() 112 [Handler](const httplib::Request &HTTPLibRequest, in get() 114 HTTPServerRequest Request(HTTPLibRequest, HTTPLibResponse); in get() local [all …]
|
| H A D | HTTPClient.cpp | 104 Error HTTPClient::perform(const HTTPRequest &Request, in perform() argument 106 if (Request.Method != HTTPMethod::GET) in perform() 110 SmallString<128> Url = Request.Url; in perform() 112 curl_easy_setopt(Curl, CURLOPT_FOLLOWLOCATION, Request.FollowRedirects); in perform() 115 for (const std::string &Header : Request.Headers) in perform() 151 Error HTTPClient::perform(const HTTPRequest &Request, in perform() argument
|
| H A D | Debuginfod.cpp | 256 HTTPRequest Request(ArtifactUrl); in getCachedOrDownloadArtifact() local 257 Request.Headers = getHeaders(); in getCachedOrDownloadArtifact() 258 Error Err = Client.perform(Request, Handler); in getCachedOrDownloadArtifact() 514 Server.get(R"(/buildid/(.*)/debuginfo)", [&](HTTPServerRequest Request) { in DebuginfodServer() argument 515 Log.push("GET " + Request.UrlPath); in DebuginfodServer() 517 if (!tryGetFromHex(Request.UrlPathMatches[0], IDString)) { in DebuginfodServer() 518 Request.setResponse( in DebuginfodServer() 526 Request.setResponse({404, "text/plain", "Build ID not found\n"}); in DebuginfodServer() 529 streamFile(Request, *PathOrErr); in DebuginfodServer() 532 Server.get(R"(/buildid/(.*)/executable)", [&](HTTPServerRequest Request) { in DebuginfodServer() argument [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ext/Amiga-Exec/ |
| H A D | Exec.xs | 36 &req->Request, 0); in OpenTimer() 54 struct MsgPort *port = req->Request.io_Message.mn_ReplyPort; in CloseTimer() 56 IExec->CloseDevice(&req->Request); in CloseTimer() 76 timermask = 1L << req->Request.io_Message.mn_ReplyPort->mp_SigBit; in WaitTimeout() 78 req->Request.io_Command = TR_ADDREQUEST; in WaitTimeout() 82 IExec->SendIO(&req->Request); in WaitTimeout() 92 IExec->AbortIO(&req->Request); in WaitTimeout() 93 IExec->WaitIO(&req->Request); in WaitTimeout()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/symbolizer/ |
| H A D | sanitizer_symbolize.cpp | 59 llvm::symbolize::Request Request{ModuleName, ModuleOffset}; in __sanitizer_symbolize_code() local 69 Printer->print(Request, in __sanitizer_symbolize_code() 75 Printer->print(Request, ResOrErr ? ResOrErr.get() : llvm::DILineInfo()); in __sanitizer_symbolize_code() 88 llvm::symbolize::Request Request{ModuleName, ModuleOffset}; in __sanitizer_symbolize_data() local 97 Printer->print(Request, ResOrErr ? ResOrErr.get() : llvm::DIGlobal()); in __sanitizer_symbolize_data()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| H A D | MPITypes.h | 27 class Request { 31 Request(State S) : CurrentState{S} {} in Request() function 37 bool operator==(const Request &ToCompare) const { 50 clang::ento::mpi::Request>
|
| H A D | MPIChecker.cpp | 41 const Request *const Req = State->get<RequestMap>(MR); in checkDoubleNonblocking() 44 if (Req && Req->CurrentState == Request::State::Nonblocking) { in checkDoubleNonblocking() 52 State = State->set<RequestMap>(MR, Request::State::Nonblocking); in checkDoubleNonblocking() 81 const Request *const Req = State->get<RequestMap>(ReqRegion); in checkUnmatchedWaits() 82 State = State->set<RequestMap>(ReqRegion, Request::State::Wait); in checkUnmatchedWaits() 114 if (Req.second.CurrentState == Request::State::Nonblocking) { in checkMissingWaits()
|
| H A D | MPIBugReporter.cpp | 24 const CallEvent &MPICallEvent, const ento::mpi::Request &Req, in reportDoubleNonblocking() 50 const ento::mpi::Request &Req, const MemRegion *const RequestRegion, in reportMissingWait() 95 const Request *const Req = N->getState()->get<RequestMap>(RequestRegion); in VisitNode() 98 const Request *const PrevReq = in VisitNode()
|
| H A D | MPIBugReporter.h | 43 const Request &Req, 54 void reportMissingWait(const Request &Req,
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | sysex | 97 >>>4 byte 0x00 SNDR (Sound Request) 102 >>>4 byte 0x01 MULR (Multi Request) 107 >>>4 byte 0x02 DRMR (Drum Map Request) 112 >>>4 byte 0x03 PATR (Sequencer Pattern Request) 117 >>>4 byte 0x04 GLBR (Global Parameter Request) 121 >>>4 byte 0x07 MODR (Mode Parameter Request) 126 >>>4 byte 0x00 SNDR (Sound Request) 131 >>>4 byte 0x01 MULR (Multi Request) 136 >>>4 byte 0x02 DRMR (Drum Map Request) 141 >>>4 byte 0x04 GLBR (Global Parameter Request) [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/AMDGPU/ |
| H A D | gfx10_probe.rst | 21 0 Request *read* permission. 22 1 Request *write* permission. 23 2 Request *execute* permission.
|
| H A D | gfx940_probe.rst | 21 0 Request *read* permission. 22 1 Request *write* permission. 23 2 Request *execute* permission.
|
| H A D | gfx8_probe.rst | 21 0 Request *read* permission. 22 1 Request *write* permission. 23 2 Request *execute* permission.
|
| H A D | gfx90a_probe.rst | 21 0 Request *read* permission. 22 1 Request *write* permission. 23 2 Request *execute* permission.
|
| H A D | gfx9_probe.rst | 21 0 Request *read* permission. 22 1 Request *write* permission. 23 2 Request *execute* permission.
|
| /openbsd-src/regress/sys/netinet/arp/ |
| H A D | Makefile | 102 @echo Send ARP Request for remote address and insert local address 115 @echo Send ARP Request and overwrite entry with multicast ethernet 141 @echo Send ARP Request with broadcast as sender hardware address 192 @echo Send ARP Request to change permanent fake address 211 @echo Send ARP Request to change address on other interface 230 @echo Send ARP Request to change temporary entry on other interface 251 @echo Send ARP Request filling an incomplete entry on other interface 269 @echo Send ARP Request for fake address that is proxied 285 @echo Send ARP Request for fake address that is not published 299 @echo Send ARP Request for address proxied on another interface
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Debuginfod/ |
| H A D | HTTPServer.h | 25 class Request; variable 42 HTTPServerRequest(const httplib::Request &HTTPLibRequest, 85 bool streamFile(HTTPServerRequest &Request, StringRef FilePath);
|
| /openbsd-src/gnu/usr.bin/perl/ext/Amiga-ARexx/ |
| H A D | ARexx.xs | 75 &req->Request, 0); in OpenTimer() 93 struct MsgPort *port = req->Request.io_Message.mn_ReplyPort; in CloseTimer() 95 IExec->CloseDevice(&req->Request); in CloseTimer() 350 timermask = 1L << req->Request.io_Message.mn_ReplyPort->mp_SigBit; in WaitRexxHost() 352 req->Request.io_Command = TR_ADDREQUEST; in WaitRexxHost() 356 IExec->SendIO(&req->Request); in WaitRexxHost() 367 IExec->AbortIO(&req->Request); in WaitRexxHost() 368 IExec->WaitIO(&req->Request); in WaitRexxHost()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| H A D | template6.C | 10 struct Request { struct 22 TC<Request> *req; argument
|
| /openbsd-src/gnu/usr.bin/cvs/doc/ |
| H A D | cvsclient.aux | 37 'xrdef {Request intro-title}{Request intro} 38 'xrdef {Request intro-pg}{9} 39 'xrdef {Request intro-snt}{Section'tie5.7}
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | EPCDynamicLibrarySearchGenerator.cpp | 44 ExecutorProcessControl::LookupRequest Request(H, LookupSymbols); in tryToGenerate() local 45 auto Result = EPC.lookupSymbols(Request); in tryToGenerate()
|
| /openbsd-src/gnu/llvm/lld/utils/ |
| H A D | benchmark.py | 18 from urllib.request import urlopen, Request 21 from urllib2 import urlopen, Request 135 urlopen(Request(args.url, data2))
|
| /openbsd-src/sys/dev/usb/ |
| H A D | if_atu.c | 474 struct atu_cmd_start_ibss Request; 476 Request.Cmd = CMD_START_IBSS; 477 Request.Reserved = 0; 478 Request.Size = sizeof(Request) - 4; 480 memset(Request.BSSID, 0x00, sizeof(Request.BSSID)); 481 memset(Request.SSID, 0x00, sizeof(Request.SSID)); 482 memcpy(Request.SSID, sc->atu_ssid, sc->atu_ssidlen); 483 Request.SSIDSize = sc->atu_ssidlen; 485 Request.Channel = (u_int8_t)sc->atu_desired_channel; 487 Request.Channel = ATU_DEFAULT_CHANNEL; [all …]
|