/freebsd/usr.sbin/bsnmpd/modules/snmp_wlan/ |
H A D | BEGEMOT-WIRELESS-MIB.txt | 67 STATUS current 107 STATUS current 129 STATUS current 166 STATUS current 190 STATUS current 201 STATUS current 219 STATUS current 264 STATUS current 273 STATUS current 294 STATUS current [all …]
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_pf/ |
H A D | BEGEMOT-PF-MIB.txt | 76 STATUS current 85 STATUS current 96 STATUS current 104 STATUS current 118 STATUS current 126 STATUS current 134 STATUS current 142 STATUS current 150 STATUS current 158 STATUS current [all …]
|
/freebsd/contrib/bsnmp/snmp_ntp/ |
H A D | NTP-PROXY-MIB.txt | 60 STATUS current 95 STATUS current 103 STATUS current 117 STATUS current 125 STATUS current 137 STATUS current 145 STATUS current 172 STATUS current 180 STATUS current 188 STATUS current [all …]
|
H A D | NTP-MIB.txt | 62 STATUS current 68 STATUS current 84 STATUS current 93 STATUS current 105 STATUS current 115 STATUS current 125 STATUS current 136 STATUS current 149 STATUS current 159 STATUS current [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps_linux.cpp | 35 if (data_.current >= last) return false; in Next() 37 (char *)internal_memchr(data_.current, '\n', last - data_.current); in Next() 41 segment->start = ParseHex(&data_.current); in Next() 42 CHECK_EQ(*data_.current++, '-'); in Next() 43 segment->end = ParseHex(&data_.current); in Next() 44 CHECK_EQ(*data_.current++, ' '); in Next() 45 CHECK(IsOneOf(*data_.current, '-', 'r')); in Next() 47 if (*data_.current++ == 'r') segment->protection |= kProtectionRead; in Next() 48 CHECK(IsOneOf(*data_.current, '-', 'w')); in Next() 49 if (*data_.current++ == 'w') segment->protection |= kProtectionWrite; in Next() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | ContinuationIndenter.cpp | 92 // Maintains a stack level corresponding to the current End token. in getLengthToMatchingParen() 131 // Returns \c true if \c Current starts a new parameter. 132 static bool startsNextParameter(const FormatToken &Current, in startsNextParameter() argument 134 const FormatToken &Previous = *Current.Previous; in startsNextParameter() 135 if (Current.is(TT_CtorInitializerComma) && in startsNextParameter() 139 if (Style.Language == FormatStyle::LK_Proto && Current.is(TT_SelectorName)) in startsNextParameter() 141 return Previous.is(tok::comma) && !Current.isTrailingComment() && in startsNextParameter() 291 const FormatToken &Current = *State.NextToken; in canBreak() local 292 const FormatToken &Previous = *Current.Previous; in canBreak() 294 assert(&Previous == Current.Previous); in canBreak() [all …]
|
H A D | SortJavaScriptImports.cpp | 218 FormatToken *Current = nullptr; member in clang::format::JavaScriptImportSorter 225 void skipComments() { Current = skipComments(Current); } in skipComments() 234 Current = Current->Next; in nextToken() 236 if (!Current || Current == LineEnd->Next) { in nextToken() 237 // Set the current token to an invalid token, so that further parsing on in nextToken() 239 Current = &invalidToken; in nextToken() 372 Current = Line->First; in parseModuleReferences() 376 while (Current && Current->is(tok::comment)) { in parseModuleReferences() 377 StringRef CommentText = Current->TokenText.trim(); in parseModuleReferences() 387 References.back().Range.setEnd(Current->Tok.getEndLoc()); in parseModuleReferences() [all …]
|
/freebsd/contrib/libcbor/test/ |
H A D | stream_expectations.c | 17 struct test_assertion current(void) { in current() function 29 assert_true(current().expectation == UINT8_EQ); in uint8_callback() 30 assert_true(current().data.int8 == actual); in uint8_callback() 40 assert_true(current().expectation == UINT16_EQ); in uint16_callback() 41 assert_true(current().data.int16 == actual); in uint16_callback() 51 assert_true(current().expectation == UINT32_EQ); in uint32_callback() 52 assert_true(current().data.int32 == actual); in uint32_callback() 62 assert_true(current().expectation == UINT64_EQ); in uint64_callback() 63 assert_true(current().data.int64 == actual); in uint64_callback() 73 assert_true(current().expectation == NEGINT8_EQ); in negint8_callback() [all …]
|
/freebsd/crypto/krb5/src/kdc/ |
H A D | kdc_transit.c | 158 char current[MAX_REALM_LN]; in add_to_transited() local 159 char exp[MAX_REALM_LN]; /* Expanded current realm name */ in add_to_transited() 162 int clst, nlst; /* count of last character in current and next */ in add_to_transited() 200 /* read field into current */ in add_to_transited() 212 current[i++] = *otrans++; in add_to_transited() 218 current[i] = '\0'; in add_to_transited() 225 while (current[0]) { in add_to_transited() 227 /* figure out expanded form of current name */ in add_to_transited() 229 clst = strlen(current) - 1; in add_to_transited() 230 if (current[0] == ' ') { in add_to_transited() [all …]
|
/freebsd/contrib/ntp/ntpsnmpd/ |
H A D | ntpv4-mib.mib | 101 STATUS current 108 STATUS current 128 STATUS current 136 STATUS current 145 STATUS current 153 STATUS current 163 STATUS current 173 STATUS current 182 STATUS current 189 -- Section 2: Current NTP status (dynamic information) [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | CodeExpander.cpp | 21 StringRef Current = Code; in emit() local 23 while (!Current.empty()) { in emit() 24 size_t Pos = Current.find_first_of("$\n\\"); in emit() 26 OS << Current; in emit() 27 Current = ""; in emit() 31 OS << Current.substr(0, Pos); in emit() 32 Current = Current.substr(Pos); in emit() 34 if (Current.consume_front("\n")) { in emit() 39 if (Current.starts_with("\\$") || Current.starts_with("\\\\")) { in emit() 40 OS << Current[1]; in emit() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 290 return StringRef(Current, End - Current); in currentInput() 402 /// Consume a single b-break[28] if it's present at the current position. 404 /// Return false if the code unit at the current position isn't a line break. 414 /// Invalid simple keys are not on the current line or are further than 1024 431 /// Skip a single-line comment when the comment starts at the current 528 /// The current position of the scanner. 529 StringRef::iterator Current; 534 /// Current YAML indentation level in spaces. 537 /// Current colum 525 StringRef::iterator Current; global() member in llvm::yaml::Scanner [all...] |
/freebsd/contrib/tcsh/nls/russian/ |
H A D | set3 | 5 3 Cut from beginning of current word to cursor - saved in cut buffer 7 5 Move to beginning of current word 9 7 Capitalize the characters from cursor to end of current word 12 10 Clear screen leaving current line on top 13 11 Complete current word 16 14 Complete current word ignoring programmable completions 17 15 Copy current word to cursor 24 22 Cut from cursor to end of current word - save in cut buffer 28 26 Lowercase the characters from cursor to end of current word 37 35 Move forward to end of current word [all …]
|
/freebsd/contrib/ntp/libntp/lib/isc/win32/ |
H A D | interfaceiter.c | 49 isc_interface_t current; /* Current interface data. */ member 58 INTERFACE_INFO IFData; /* Current Interface Info */ 59 int numIF; /* Current Interface count */ 63 INTERFACE_INFO *pos4; /* Current offset in IF List */ 417 iter->current.netmask.family = af; in GAA_find_prefix() 436 octets = sizeof(iter->current.netmask.type.in6); in GAA_find_prefix() 438 octets = sizeof(iter->current.netmask.type.in); in GAA_find_prefix() 439 memset(&iter->current.netmask.type, 0xFF, octets); in GAA_find_prefix() 444 memset(&iter->current.netmask.type.in6, 0xFF, nbytes); in GAA_find_prefix() 445 pbits = (void *)&iter->current.netmask.type.in6; in GAA_find_prefix() [all …]
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set3 | 5 3 Cut from beginning of current word to cursor - saved in cut buffer 7 5 Move to beginning of current word 9 7 Capitalize the characters from cursor to end of current word 12 10 Clear screen leaving current line on top 13 11 Complete current word 16 14 Complete current word ignoring programmable completions 17 15 Copy current word to cursor 24 22 Cut from cursor to end of current word - save in cut buffer 28 26 Lowercase the characters from cursor to end of current word 37 35 Move forward to end of current word [all …]
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set3 | 5 3 Cut from beginning of current word to cursor - saved in cut buffer 7 5 Move to beginning of current word 9 7 Capitalize the characters from cursor to end of current word 12 10 Clear screen leaving current line on top 13 11 Complete current word 16 14 Complete current word ignoring programmable completions 17 15 Copy current word to cursor 24 22 Cut from cursor to end of current word - save in cut buffer 28 26 Lowercase the characters from cursor to end of current word 37 35 Move forward to end of current word [all …]
|
/freebsd/contrib/diff/src/ |
H A D | io.c | 72 file_block_read (struct file_data *current, size_t size) in file_block_read() argument 74 if (size && ! current->eof) in file_block_read() 76 size_t s = block_read (current->desc, in file_block_read() 77 FILE_BUFFER (current) + current->buffered, size); in file_block_read() 79 pfatal_with_name (current->name); in file_block_read() 80 current->buffered += s; in file_block_read() 81 current->eof = s < size; in file_block_read() 92 /* Get ready to read the current file. 97 sip (struct file_data *current, bool skip_test) in sip() argument 100 if (current->desc < 0) in sip() [all …]
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | FrameHeaderCache.hpp | 93 CacheEntry *Current = MostRecentlyUsed; in find() local 95 while (Current != nullptr) { in find() 98 Current->LowPC(), Current->HighPC()); in find() 99 if (Current->LowPC() <= CBData->targetAddr && in find() 100 CBData->targetAddr < Current->HighPC()) { in find() 103 Current->LowPC(), Current->HighPC()); in find() 105 // If there is no Previous, then Current is already the in find() 107 Previous->Next = Current in find() 123 CacheEntry *Current = nullptr; add() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | DXContainer.cpp | 66 const char *Current = Part.begin(); in parseDXILHeader() local 68 if (Error Err = readStruct(Part, Current, Header)) in parseDXILHeader() 70 Current += offsetof(dxbc::ProgramHeader, Bitcode) + Header.Bitcode.Offset; in parseDXILHeader() 71 DXIL.emplace(std::make_pair(Header, Current)); in parseDXILHeader() 132 const char *Current = Data.getBuffer().data() + sizeof(dxbc::Header); in parsePartOffsets() local 135 if (Error Err = readInteger(Data.getBuffer(), Current, PartOffset)) in parsePartOffsets() 143 Current += sizeof(uint32_t); in parsePartOffsets() 222 const char *Current = Buffer.data() + Offset; in updateIteratorImpl() local 225 cantFail(readStruct(Buffer, Current, IteratorState.Part)); in updateIteratorImpl() 227 StringRef(Current + sizeof(dxbc::PartHeader), IteratorState.Part.Size); in updateIteratorImpl() [all …]
|
/freebsd/usr.sbin/pw/tests/ |
H A D | pw_usernext_test.sh | 10 CURRENT=`${PW} usernext | sed -e 's/:.*//'` 12 MAX=`expr ${CURRENT} + ${RANDOM}` 13 while [ "${CURRENT}" -lt "${MAX}" ] 15 atf_check -s exit:0 ${PW} useradd test${CURRENT} 16 CURRENT=`expr ${CURRENT} + 1` 18 atf_check -s exit:0 -o match:"${CURRENT}:${CURRENT}" \ 28 CURRENT=`${PW} usernext | sed -e 's/:.*//'` 31 MAX=`expr ${CURRENT} + ${RANDOM}` 32 while [ "${CURRENT}" -lt "${MAX}" ] 34 atf_check -s exit:0 ${PW} useradd -n test${CURRENT} -g 0 [all …]
|
/freebsd/share/doc/usd/13.viref/ |
H A D | vi.cmd.roff | 19 the default display can show the current cursor row and cursor column, 21 and the current mode of the editor. 44 not fit on the current screen. 127 Each command description (for commands that alter the current cursor 133 is horizontally as close as possible to the current cursor position. 134 If the current line is shorter than the cursor position 140 it does not alter the current cursor position, and a subsequent 199 which case it means the current line) or a cursor movement command. 372 times for the current word. 373 The current word begins at the first non-whitespace character on or [all …]
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_netgraph/ |
H A D | BEGEMOT-NETGRAPH.txt | 81 STATUS current 88 STATUS current 95 STATUS current 102 STATUS current 109 STATUS current 116 STATUS current 130 STATUS current 141 STATUS current 151 STATUS current 160 STATUS current [all …]
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_hast/ |
H A D | BEGEMOT-HAST-MIB.txt | 79 STATUS current 90 STATUS current 98 STATUS current 137 STATUS current 145 STATUS current 153 STATUS current 161 STATUS current 169 STATUS current 178 STATUS current 191 STATUS current [all …]
|
/freebsd/contrib/bsnmp/snmpd/ |
H A D | BEGEMOT-SNMPD.txt | 78 STATUS current 91 STATUS current 105 STATUS current 115 STATUS current 125 STATUS current 135 STATUS current 143 STATUS current 160 STATUS current 169 STATUS current 184 STATUS current [all …]
|
/freebsd/usr.sbin/etcupdate/ |
H A D | etcupdate.8 | 98 keeps copies of the current and previous versions of files that it manages. 100 .Dq current 107 .Dq current 135 .Dq current 148 .Dq current 153 .Dq current 162 .Dq current 173 .Dq current 178 .Dq current 183 .Dq current [all …]
|