| /netbsd-src/external/gpl3/gcc/dist/libcody/ |
| H A D | client.cc | 17 static Packet ConnectResponse (std::vector<std::string> &words); 18 static Packet PathnameResponse (std::vector<std::string> &words); 19 static Packet OKResponse (std::vector<std::string> &words); 20 static Packet IncludeTranslateResponse (std::vector<std::string> &words); 23 static Packet (*const responseTable[Detail::RC_HWM]) 98 static Packet CommunicationError (int err) in CommunicationError() 103 return Packet (Client::PC_ERROR, std::move (e)); in CommunicationError() 106 Packet Client::ProcessResponse (std::vector<std::string> &words, in ProcessResponse() 116 return Packet (Client::PC_ERROR, std::move (msg)); in ProcessResponse() 119 return Packet (Client::PC_ERROR, u8"missing response"); in ProcessResponse() [all …]
|
| H A D | cody.hh | 233 class Packet class 255 Packet (unsigned c, size_t i = 0) in Packet() function in Cody::Packet 259 Packet (unsigned c, std::string &&s) in Packet() function in Cody::Packet 263 Packet (unsigned c, std::string const &s) in Packet() function in Cody::Packet 267 Packet (unsigned c, std::vector<std::string> &&v) in Packet() function in Cody::Packet 275 Packet (Packet &&t) in Packet() function in Cody::Packet 279 Packet &operator= (Packet &&t) in operator =() 286 ~Packet () in ~Packet() 294 void Create (Packet &&t); 459 Packet Connect (char const *agent, char const *ident, [all …]
|
| H A D | packet.cc | 10 void Packet::Destroy () in Destroy() 29 void Packet::Create (Packet &&t) in Create()
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | pgp-binary-keys | 45 # 1 0xC1 -- Public-Key Encrypted Session Key Packet 46 # 2 0xC2 -- Signature Packet 47 # 3 0xC3 -- Symmetric-Key Encrypted Session Key Packet 48 # 4 0xC4 -- One-Pass Signature Packet 49 # 5 0xC5 -- Secret-Key Packet 50 # 6 0xC6 -- Public-Key Packet 51 # 7 0xC7 -- Secret-Subkey Packet 52 # 8 0xC8 -- Compressed Data Packet 53 # 9 0xC9 -- Symmetrically Encrypted Data Packet 54 # 10 0xCA -- Marker Packet [all …]
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/resolver/ans8/ |
| H A D | ans.pl | 18 use Net::DNS::Packet; 52 $request = new Net::DNS::Packet(\$buf, 0); 56 ($request, $err) = new Net::DNS::Packet(\$buf, 0); 66 my $response = new Net::DNS::Packet($qname, $qtype, $qclass); 106 $request = new Net::DNS::Packet(\$buf, 0); 110 ($request, $err) = new Net::DNS::Packet(\$buf, 0); 121 my $response = new Net::DNS::Packet($qname, $qtype, $qclass);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/upforwd/ans4/ |
| H A D | ans.pl | 65 use Net::DNS::Packet; 102 $packet = new Net::DNS::Packet(\$buf, 0); 106 ($packet, $err) = new Net::DNS::Packet(\$buf, 0); 215 # Net::DNS::Packet->sign_tsig() has the ability to use a custom signing 216 # function (specified by calling Packet->sign_func()). We use this 254 $packet = new Net::DNS::Packet(\$buf, 0); 258 ($packet, $err) = new Net::DNS::Packet(\$buf, 0); 323 Net::DNS::Packet->new(\($packet->data)); 328 $packet = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonMachineScheduler.h | 45 std::vector<SUnit *> Packet; variable 59 Packet.resize(SchedModel->getIssueWidth()); in VLIWResourceModel() 60 Packet.clear(); in VLIWResourceModel() 69 Packet.clear(); in resetPacketState() 77 Packet.clear(); in reset() 84 bool isInPacket(SUnit *SU) const { return is_contained(Packet, SU); } in isInPacket()
|
| H A D | HexagonMachineScheduler.cpp | 126 for (unsigned i = 0, e = Packet.size(); i != e; ++i) in isResourceAvailable() 127 if (hasDependence(Packet[i], SU, QII)) in isResourceAvailable() 130 for (unsigned i = 0, e = Packet.size(); i != e; ++i) in isResourceAvailable() 131 if (hasDependence(SU, Packet[i], QII)) in isResourceAvailable() 143 Packet.clear(); in reserveResources() 150 Packet.size() >= SchedModel->getIssueWidth()) { in reserveResources() 152 Packet.clear(); in reserveResources() 174 Packet.push_back(SU); in reserveResources() 178 for (unsigned i = 0, e = Packet.size(); i != e; ++i) { in reserveResources() 180 LLVM_DEBUG(dbgs() << Packet[i]->NodeNum << ")\t"); in reserveResources() [all …]
|
| /netbsd-src/external/bsd/libpcap/dist/cmake/Modules/ |
| H A D | FindPacket.cmake | 27 # Find the Packet library and include files. 33 # Packet_LIBRARY - relative or absolute path to the Packet library to 35 # Packet library is not located in the compiler's 38 # Packet_FOUND - TRUE if the Packet library *and* header are found. 50 # The 64-bit Packet.lib is located under /x64 95 NAMES Packet packet 100 find_package_handle_standard_args(Packet
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.h | 169 HexagonPacket Packet; variable 212 unsigned size() const { return (Packet.size()); } in size() 218 iterator begin() { return (Packet.begin()); } in begin() 219 iterator end() { return (Packet.end()); } in end() 220 const_iterator cbegin() const { return (Packet.begin()); } in cbegin() 221 const_iterator cend() const { return (Packet.end()); } in cend()
|
| H A D | HexagonShuffler.cpp | 175 Packet.clear(); in reset() 184 Packet.push_back(PI); in append() 293 const HexagonPacket PacketSave = Packet; in restrictBranchOrder() 303 Packet = PacketSave; in restrictBranchOrder() 325 Packet = *ShuffledPacket; in ValidResourceUsage() 610 HexagonPacket PacketResult = Packet; in tryAuction() 652 for (ISJ = ISK = Packet.begin(), slotSkip = slotWeight = 0; in shuffle() 653 ISK != Packet.end(); ++ISK, ++slotSkip) in shuffle() 664 std::stable_sort(ISJ, Packet.end()); in shuffle()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/forward/ans6/ |
| H A D | ans.pl | 78 use Net::DNS::Packet; 130 $request = new Net::DNS::Packet(\$buf, 0); 134 ($request, $err) = new Net::DNS::Packet(\$buf, 0); 144 my $packet = new Net::DNS::Packet($qname, $qtype, $qclass); 345 $request = new Net::DNS::Packet(\$buf, 0); 349 ($request, $err) = new Net::DNS::Packet(\$buf, 0); 361 my $packet = new Net::DNS::Packet($qname, $qtype, $qclass); 476 Net::DNS::Packet->new(\($packet->data)); 485 $packet = new Net::DNS::Packet($tname, $qtype, $qclass);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/digdelv/ans5/ |
| H A D | ans.pl | 29 use Net::DNS::Packet; 110 $request = new Net::DNS::Packet(\$buf, 0); 114 ($request, $err) = new Net::DNS::Packet(\$buf, 0); 124 my $packet = new Net::DNS::Packet($qname, $qtype, $qclass);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/digdelv/ans7/ |
| H A D | ans.pl | 17 use Net::DNS::Packet; 45 $packet = new Net::DNS::Packet(\$buf, 0); 49 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/rpzrecurse/ans5/ |
| H A D | ans.pl | 17 use Net::DNS::Packet; 41 $packet = new Net::DNS::Packet(\$buf, 0); 45 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/fetchlimit/ans4/ |
| H A D | ans.pl | 22 use Net::DNS::Packet; 46 $packet = new Net::DNS::Packet(\$buf, 0); 50 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/zero/ans5/ |
| H A D | ans.pl | 22 use Net::DNS::Packet; 48 $packet = new Net::DNS::Packet(\$buf, 0); 52 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/digdelv/ans6/ |
| H A D | ans.pl | 17 use Net::DNS::Packet; 41 $packet = new Net::DNS::Packet(\$buf, 0); 45 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/ |
| H A D | packet.pl | 65 use Net::DNS::Packet; 87 $response = new Net::DNS::Packet(\$buf, 0); 91 ($response, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ResourcePriorityQueue.cpp | 271 for (unsigned i = 0, e = Packet.size(); i != e; ++i) in isResourceAvailable() 272 for (const SDep &Succ : Packet[i]->Succs) { in isResourceAvailable() 291 Packet.clear(); in reserveResources() 307 Packet.push_back(SU); in reserveResources() 312 Packet.clear(); in reserveResources() 317 if (Packet.size() >= InstrItins->SchedModel.IssueWidth) { in reserveResources() 319 Packet.clear(); in reserveResources() 469 Packet.clear(); in scheduledNode()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/statistics/ans4/ |
| H A D | ans.pl | 21 use Net::DNS::Packet; 45 $packet = new Net::DNS::Packet(\$buf, 0); 49 ($packet, $err) = new Net::DNS::Packet(\$buf, 0);
|
| /netbsd-src/crypto/external/bsd/netpgp/dist/ref/ |
| H A D | rfc2440.txt | 101 4. Packet Syntax 12 103 4.2. Packet Headers 12 104 4.2.1. Old-Format Packet Lengths 13 105 4.2.2. New-Format Packet Lengths 13 110 4.2.3. Packet Length Examples 14 119 4.3. Packet Tags 15 120 5. Packet Types 16 122 5.2. Signature Packet (Tag 2) 17 124 5.2.2. Version 3 Signature Packet Format 19 125 5.2.3. Version 4 Signature Packet Format 21 [all …]
|
| H A D | draft-ietf-openpgp-rfc2440bis-12.txt | 145 4. Packet Syntax 13 147 4.2. Packet Headers 13 148 4.2.1. Old-Format Packet Lengths 14 149 4.2.2. New-Format Packet Lengths 14 154 4.2.3. Packet Length Examples 16 155 4.3. Packet Tags 16 156 5. Packet Types 17 158 5.2. Signature Packet (Tag 2) 18 160 5.2.2. Version 3 Signature Packet Format 20 161 5.2.3. Version 4 Signature Packet Format 23 [all …]
|
| H A D | draft-ietf-openpgp-rfc2440bis-13.txt | 145 4. Packet Syntax 13 147 4.2. Packet Headers 13 148 4.2.1. Old-Format Packet Lengths 14 149 4.2.2. New-Format Packet Lengths 14 154 4.2.3. Packet Length Examples 16 155 4.3. Packet Tags 16 156 5. Packet Types 17 158 5.2. Signature Packet (Tag 2) 18 160 5.2.2. Version 3 Signature Packet Format 20 161 5.2.3. Version 4 Signature Packet Format 23 [all …]
|
| /netbsd-src/external/bsd/ipf/dist/etc/ |
| H A D | protocols | 21 prm 21 PRM # Packet Radio Measurement 68 ippc 67 IPPC # Internet Pluribus Packet Core 72 ipcv 71 IPCV # Internet Packet Core Utility 76 pvp 75 PVP # Packet Video Protocol
|