Searched refs:back (Results 26 - 50 of 1662) sorted by relevance

1234567891011>>

/openbsd-current/regress/usr.sbin/syslogd/
H A Dargs-server-tcp-sendback.pl1 # The TCP server writes a message back to the syslogd.
7 # Check that syslogd writes a debug message about the message sent back.
13 my $sendback = "syslogd tcp server send back message";
19 ${$self->{syslogd}}->loggrep("loghost .* did send .* back", 5)
20 or die ref($self), " no send back in syslogd.log";
29 qr/did send /.length($sendback).qr/ bytes back/ => 1,
H A Dargs-server-tls-sendback.pl1 # The TLS server writes a message back to the syslogd.
7 # Check that syslogd writes a debug message about the message sent back.
13 my $sendback = "syslogd tcp server send back message";
19 ${$self->{syslogd}}->loggrep("loghost .* did send .* back", 5)
20 or die ref($self), " no send back in syslogd.log";
29 qr/did send /.length($sendback).qr/ bytes back/ => 1,
/openbsd-current/libexec/login_ldap/
H A Dlogin_ldap.c70 FILE *back = NULL; local
88 back = stdout;
128 * Filedes 3 is the back channel, where we send back results.
130 if (back == NULL && (back = fdopen(3, "a")) == NULL) {
131 dlog(0, "error reopening back channel");
141 * format of back channel message
151 dlog(0, "read error from back channel");
162 dlog(0, "protocol error on back channe
[all...]
/openbsd-current/lib/libform/
H A Dfld_attr.c109 GEN_FIELD_ATTR_SET_FCT(back)
119 GEN_FIELD_ATTR_GET_FCT(back)
/openbsd-current/lib/libmenu/
H A Dm_attribs.c113 GEN_MENU_ATTR_SET_FCT(back)
124 GEN_MENU_ATTR_GET_FCT(back)
/openbsd-current/sys/dev/pci/
H A Dif_igc.h336 bus_space_read_4(((struct igc_osdep *)(a)->back)->os_memt, \
337 ((struct igc_osdep *)(a)->back)->os_memh, reg)
339 bus_space_write_4(((struct igc_osdep *)(a)->back)->os_memt, \
340 ((struct igc_osdep *)(a)->back)->os_memh, reg, value)
342 bus_space_read_4(((struct igc_osdep *)(a)->back)->os_memt, \
343 ((struct igc_osdep *)(a)->back)->os_memh, (reg + ((off) << 2)))
345 bus_space_write_4(((struct igc_osdep *)(a)->back)->os_memt, \
346 ((struct igc_osdep *)(a)->back)->os_memh, \
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Delfcore.h156 const struct elf_backend_data *back; local
160 back = (const struct elf_backend_data *) (*target_ptr)->backend_data;
161 if (back->elf_machine_code == i_ehdrp->e_machine
162 || (back->elf_machine_alt1 != 0
163 && i_ehdrp->e_machine == back->elf_machine_alt1)
164 || (back->elf_machine_alt2 != 0
165 && i_ehdrp->e_machine == back->elf_machine_alt2))
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Delfcore.h156 const struct elf_backend_data *back; local
160 back = (const struct elf_backend_data *) (*target_ptr)->backend_data;
161 if (back->elf_machine_code == i_ehdrp->e_machine
162 || (back->elf_machine_alt1 != 0
163 && i_ehdrp->e_machine == back->elf_machine_alt1)
164 || (back->elf_machine_alt2 != 0
165 && i_ehdrp->e_machine == back->elf_machine_alt2))
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DPriorityWorklist.h83 const T &back() const { function in class:llvm::PriorityWorklist
84 assert(!empty() && "Cannot call back() on empty PriorityWorklist!");
85 return V.back();
102 // If the element isn't at the back, null it out and append a fresh one.
146 assert(back() != T() && "Cannot have a null element at the back!");
147 M.erase(back());
150 } while (!V.empty() && V.back() == T());
154 T Ret = back();
171 } while (!V.empty() && V.back()
[all...]
H A DSCCIterator.h134 /// still contain a cycle if the node has an edge back to itself.
164 while (VisitStack.back().NextChild != GT::child_end(VisitStack.back().Node)) {
166 NodeRef childN = *VisitStack.back().NextChild++;
176 if (VisitStack.back().MinVisited > childNum)
177 VisitStack.back().MinVisited = childNum;
187 NodeRef visitingN = VisitStack.back().Node;
188 unsigned minVisitNum = VisitStack.back().MinVisited;
189 assert(VisitStack.back().NextChild == GT::child_end(visitingN));
193 if (!VisitStack.empty() && VisitStack.back()
[all...]
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaModule.cpp78 ModuleScopes.back().Module->Kind == Module::GlobalModuleFragment) {
83 ModuleScopes.back().BeginLoc = ModuleLoc;
125 // after creating the pre-processed output) fall back to obtaining the file
135 ModuleScopes.back().BeginLoc = StartOfTU;
136 ModuleScopes.back().Module = Mod;
137 ModuleScopes.back().ModuleInterface = true;
138 ModuleScopes.back().IsPartition = false;
242 Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module),
258 : ModuleScopes.back().BeginLoc;
305 ? Partition.back()
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cpp79 CHECK_EQ(l.back(), x);
87 CHECK_EQ(l.back(), x);
98 CHECK_EQ(l.back(), x);
104 CHECK_EQ(l.back(), x);
115 CHECK_EQ(l.back(), z);
121 CHECK_EQ(l.back(), z);
133 CHECK_EQ(l.back(), z);
138 CHECK_EQ(l.back(), x);
179 CHECK_EQ(l.back(), &i);
183 CHECK_EQ(l.back(),
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dlist_test.cpp79 EXPECT_EQ(L.back(), X);
87 EXPECT_EQ(L.back(), X);
98 EXPECT_EQ(L.back(), X);
104 EXPECT_EQ(L.back(), X);
115 EXPECT_EQ(L.back(), Z);
121 EXPECT_EQ(L.back(), Z);
143 EXPECT_EQ(L.back(), Z);
148 EXPECT_EQ(L.back(), X);
178 EXPECT_EQ(L1.back(), X);
193 EXPECT_EQ(L.back(),
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Serialization/
H A DContinuousRangeMap.h67 if (!Rep.empty() && Rep.back() == Val)
70 assert((Rep.empty() || Rep.back().first < Val.first) &&
106 reference back() { return Rep.back(); } function in class:clang::ContinuousRangeMap
107 const_reference back() const { return Rep.back(); } function in class:clang::ContinuousRangeMap
/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/tests/
H A Diterate.cpp32 size_t Size = reinterpret_cast<size_t>(Allocated.back().first) -
49 Size = reinterpret_cast<size_t>(Allocated.back().first) -
50 reinterpret_cast<size_t>(Base); // Allocated.back() is out of range.
64 GPA.deallocate(Allocated.back().first);
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Event/
H A DDiag.pm67 =back
80 =back
88 =back
H A DNote.pm65 =back
78 =back
86 =back
/openbsd-current/games/backgammon/common_source/
H A Dinit.c40 #include <back.h>
/openbsd-current/games/battlestar/
H A Droom.c82 back = here.south;
89 back = here.north;
96 back = here.west;
103 back = here.east;
119 return (option == '+' ? "behind you" : "back");
129 return (option == '+' ? "behind you" : "back");
147 return (option == '+' ? "behind you" : "back");
157 return (option == '+' ? "behind you" : "back");
/openbsd-current/gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale/Maketext/
H A DGuts.pm20 were merged back into Locale::Maketext
H A DGutsLoader.pm22 were merged back into Locale::Maketext.
/openbsd-current/gnu/llvm/clang/lib/Lex/
H A DPPCaching.cpp43 CachedLexPos = BacktrackPositions.back();
110 Lex(CachedTokens.back());
113 return CachedTokens.back();
127 assert((BacktrackPositions.empty() || BacktrackPositions.back() <= i) &&
/openbsd-current/gnu/llvm/llvm/lib/TableGen/
H A DTGLexer.cpp603 if (!PrepIncludeStack.back()->empty()) {
721 PrepIncludeStack.back()->push_back(
729 // then just return back to the lines skipping code.
749 if (PrepIncludeStack.back()->empty())
752 PreprocessorControlDesc IfdefEntry = PrepIncludeStack.back()->back();
761 PrepIncludeStack.back()->pop_back();
762 PrepIncludeStack.back()->push_back(
782 if (PrepIncludeStack.back()->empty())
785 auto &IfdefOrElseEntry = PrepIncludeStack.back()
[all...]
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericRTDyldMemoryManager.cpp71 auto &Seg = Unmapped.back().CodeAllocs;
74 alignAddr(Seg.back().Contents.get(), Align(Alignment)));
89 IsReadOnly ? Unmapped.back().RODataAllocs : Unmapped.back().RWDataAllocs;
93 alignAddr(Seg.back().Contents.get(), Align(Alignment)));
146 Unmapped.back().RemoteCode = {
148 Unmapped.back().RemoteROData = {
149 Unmapped.back().RemoteCode.End,
151 Unmapped.back().RemoteRWData = {
152 Unmapped.back()
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.asm/
H A Ds390x.inc9 # back chain, and space for the callee to save its registers.
12 # Zero this frame's back chain pointer.
35 # Allocate the stack frame, and write the back chain pointer.

Completed in 321 milliseconds

1234567891011>>