/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | CXSourceLocation.h | 1 /*===-- clang-c/CXSourceLocation.h - C Index Source Location ------*- C -*-===*\ 30 * used to represent source location information, either for a particular 32 * specific location information from those data types. 38 * Identifies a specific source location within a translation 42 * to map a source location to a particular file, line, and column. 62 * Retrieve a NULL (invalid) source location. 71 * \returns non-zero if the source locations refer to the same location, zero 78 * Returns non-zero if the given source location is in a system header. 80 CINDEX_LINKAGE int clang_Location_isInSystemHeader(CXSourceLocation location); 83 * Returns non-zero if the given source location is in the main file of [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | AssertFrameRecognizer.cpp | 17 /// Fetches the abort frame location depending on the current platform. 21 /// \param[in,out] location 26 bool GetAbortLocation(llvm::Triple::OSType os, SymbolLocation &location) { in GetAbortLocation() argument 30 location.module_spec = FileSpec("libsystem_kernel.dylib"); in GetAbortLocation() 31 location.symbols.push_back(ConstString("__pthread_kill")); in GetAbortLocation() 34 location.module_spec = FileSpec("libc.so.6"); in GetAbortLocation() 35 location.symbols.push_back(ConstString("raise")); in GetAbortLocation() 36 location.symbols.push_back(ConstString("__GI_raise")); in GetAbortLocation() 37 location.symbols.push_back(ConstString("gsignal")); in GetAbortLocation() 38 location.symbols.push_back(ConstString("pthread_kill")); in GetAbortLocation() [all …]
|
/freebsd/tests/sys/sys/ |
H A D | bitstring_test.c | 398 int location; in ATF_TC_BODY() local 404 location = 0; in ATF_TC_BODY() 405 bit_ffs_area(bitstr, nbits, 3, &location); in ATF_TC_BODY() 406 ATF_REQUIRE_EQ_MSG(-1, location, in ATF_TC_BODY() 407 "bit_ffs_area: found location of size 3 when only 2 bits are set"); in ATF_TC_BODY() 409 "bit_ntest: found location of size 3 when only 2 bits are set"); in ATF_TC_BODY() 413 location = 0; in ATF_TC_BODY() 414 bit_ffs_area(bitstr, nbits, 3, &location); in ATF_TC_BODY() 415 ATF_REQUIRE_EQ_MSG(5, location, in ATF_TC_BODY() 416 "bit_ffs_area: failed to find location of size 3 %d", location); in ATF_TC_BODY() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointLocation.h | 28 /// A breakpoint location is defined by the breakpoint that produces it, 30 /// breakpoint location also may have a breakpoint site if its address has 33 /// FIXME: Should we also store some fingerprint for the location, so 34 /// we can map one location to the "equivalent location" on rerun? This would 42 /// Gets the load address for this breakpoint location \return 43 /// Returns breakpoint location load address, \b 47 /// Gets the Address for this breakpoint location \return 48 /// Returns breakpoint location Address. 50 /// Gets the Breakpoint that created this breakpoint location \return 57 /// location. [all …]
|
H A D | BreakpointLocationList.h | 25 /// location in the list has a unique ID, and is unique by Address as well. 27 // Only Breakpoints can make the location list, or add elements to it. This 29 // adding the location to this list sets its ID, and implicitly all the 40 /// Returns a shared pointer to the breakpoint location at address \a addr - 51 /// Returns a shared pointer to the breakpoint location with id \a breakID, 55 /// The breakpoint location ID to seek for. 62 /// Returns the breakpoint location id to the breakpoint location at address 69 /// The ID of the breakpoint location, or LLDB_INVALID_BREAK_ID. 72 /// Returns a breakpoint location list of the breakpoint locations in the 87 /// Returns a shared pointer to the breakpoint location with index \a i. [all …]
|
H A D | BreakpointLocationCollection.h | 31 /// Shared pointer to the breakpoint location that will get added 35 /// Removes the breakpoint location given by \b breakID from this 42 /// The breakpoint location index in break_id to remove. 48 /// Returns a shared pointer to the breakpoint location with id \a 55 /// The breakpoint location ID in \a break_id to seek for. 63 /// Returns a shared pointer to the breakpoint location with id \a 67 /// The breakpoint location ID to seek for. 70 /// The breakpoint location ID in \a break_id to seek for. 78 /// Returns a shared pointer to the breakpoint location with index 82 /// The breakpoint location index to seek for. [all …]
|
H A D | Breakpoint.h | 43 /// breakpoint location matches through the symbols in the module list of the 55 /// \b Location List: 57 /// For a given breakpoint, there will be only one location with a given 58 /// address. Adding a location at an already taken address will just return 59 /// the location already at that address. Locations can be looked up by ID, 70 /// precedence over the options set on the individual location. So for 72 /// hit. But if the breakpoint is enabled, then the location's enabled state 73 /// will be checked to determine whether to insert that breakpoint location. 75 /// location's condition. But if the breakpoint condition says "continue", 76 /// then we will check the location for whether to actually stop or not. One [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | ProgramPoint.h | 10 // distinct location in a function. 239 static bool isKind(const ProgramPoint &Location) { in isKind() argument 240 return Location.getKind() == BlockEntranceKind; in isKind() 260 static bool isKind(const ProgramPoint &Location) { in isKind() argument 261 return Location.getKind() == BlockExitKind; in isKind() 283 static bool isKind(const ProgramPoint &Location) { in isKind() argument 284 unsigned k = Location.getKind(); in isKind() 301 static bool isKind(const ProgramPoint &Location) { in isKind() argument 302 return Location.getKind() == PreStmtKind; in isKind() 324 static bool isKind(const ProgramPoint &Location) { in isKind() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 56 /// Starting location of the clause (the clause keyword). 59 /// Ending location of the clause. 70 /// Returns the starting location of the clause. 73 /// Returns the ending location of the clause. 76 /// Sets the starting location of the clause. 79 /// Sets the ending location of the clause. 114 /// \param StartLoc Starting location of the clause. 115 /// \param EndLoc Ending location of the clause. 146 /// Location of '('. 165 /// Sets the location of '('. [all …]
|
H A D | StmtOpenMP.h | 272 /// Starting location of the directive (directive keyword). 274 /// Ending location of the directive. 301 /// \param StartLoc Starting location of the directive (directive keyword). 302 /// \param EndLoc Ending location of the directive. 501 /// Returns starting location of directive kind. 503 /// Returns ending location of directive. 506 /// Set starting location of directive kind. 508 /// \param Loc New starting location of directive. 511 /// Set ending location of directive. 513 /// \param Loc New ending location of directive. [all …]
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | dwarf_get_loclist_entry.3 | 32 .Nd retrieve DWARF location list entry 51 retrieves a location list entry from the DWARF section 63 section, to the start of the desired location list entry. 67 should point to a location which will hold the offset, relative to the 68 base address of the location list entry, of the highest program 73 should point to a location which will hold the offset, relative to the 74 base address of the location list entry, of the lowest program counter 79 should point to a location which will be set to a pointer to the location 84 should point to a location which will hold the length in bytes of the 85 location list data returned in argument [all …]
|
H A D | dwarf_loclist.3 | 33 .Nd retrieve DWARF location expression information 53 These functions retrieve the location expressions 64 retrieves the list of location expressions associated with a DWARF 71 should point to a location which will hold a returned array of 77 should point to a location which will be set to the number of 86 retrieves the first location expression associated with an attribute. 92 should point to a location which will hold the returned pointer 98 should point to a location which will be always set to 1. 130 descriptor represents one operation of a location expression. 146 The byte offset of this operation within the containing location [all …]
|
/freebsd/share/man/man3/ |
H A D | bitstring.3 | 209 stores in the location referenced by 215 If all bits are set, the location referenced by 222 stores in the location referenced by 228 If no bits are set, the location referenced by 234 stores in the location referenced by 244 are set, the location referenced by 251 stores in the location referenced by 261 the location referenced by 268 stores in the location referenced by 280 match that value, the location referenced by [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ModRef.h | 74 using Location = LocationEnum; 82 static uint32_t getLocationPos(Location Loc) { in getLocationPos() 88 void setModRef(Location Loc, ModRefInfo MR) { in setModRef() 94 /// Returns iterator over all supported location kinds. 96 return enum_seq_inclusive(Location::First, Location::Last, in locations() 100 /// Create MemoryEffectsBase that can access only the given location with the 102 MemoryEffectsBase(Location Loc, ModRefInfo MR) { setModRef(Loc, MR); } in MemoryEffectsBase() 104 /// Create MemoryEffectsBase that can access any location with the given 107 for (Location Loc : locations()) in MemoryEffectsBase() 133 return MemoryEffectsBase(Location::ArgMem, MR); [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVSymbol.cpp | 64 // Add a Location Entry. 71 // Create the location entry. in addLocation() 80 // Mark the symbol as having location information. in addLocation() 84 // Add a Location Record. 91 // Add a Location Entry. 94 // Create a Location Entry, with the global information. in addLocationConstant() 99 // Add records to Location Entry. in addLocationConstant() 106 // Create a location entry for the gap. in addLocationGap() 116 // Add gap to Location Entry. in addLocationGap() 126 // The symbol has locations records. Fill gaps in the location list. in fillLocationGaps() [all …]
|
/freebsd/contrib/ntp/sntp/libevent/sample/ |
H A D | http-connect.c | 23 struct evhttp_uri *location; member 75 struct evhttp_uri *location = base->location; in connect_cb() local 84 evhttp_add_header(req->output_headers, "Host", evhttp_uri_get_host(location)); in connect_cb() 86 uri_path(location, buffer))); in connect_cb() 93 struct evhttp_uri *location; in main() local 108 location = uri_parse(argv[2]); in main() 114 connect_base.location = location; in main() 117 uri_hostport(location, hostport); in main() 128 evhttp_uri_free(location); in main()
|
/freebsd/contrib/libevent/sample/ |
H A D | http-connect.c | 23 struct evhttp_uri *location; member 75 struct evhttp_uri *location = base->location; in connect_cb() local 84 evhttp_add_header(req->output_headers, "Host", evhttp_uri_get_host(location)); in connect_cb() 86 uri_path(location, buffer))); in connect_cb() 93 struct evhttp_uri *location; in main() local 108 location = uri_parse(argv[2]); in main() 114 connect_base.location = location; in main() 117 uri_hostport(location, hostport); in main() 128 evhttp_uri_free(location); in main()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/ |
H A D | zfs_set_keylocation.ksh | 31 # 1. Verify the key location of the default dataset is 'none' 32 # 2. Attempt to change the key location of the default dataset 34 # 4. Attempt to change the key location of the encrypted dataset to 'none', 35 # an invalid location, its current location, and 'prompt' 36 # 5. Attempt to reload the encrypted dataset key using the new key location 38 # 7. Verify the key location of the child dataset is 'none' 39 # 8. Attempt to change the key location of the child dataset 40 # 9. Verify the key location of the child dataset has not changed 53 log_assert "Key location can only be 'prompt', 'file://', or 'https://'" \ 97 log_pass "Key location can only be 'prompt', 'file://', or 'https://'" \
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBBreakpointDocstrings.i | 21 # Get the breakpoint location from breakpoint after we verified that, 22 # indeed, it has one location. 23 location = breakpoint.GetLocationAtIndex(0) 24 self.assertTrue(location and 25 location.IsEnabled(), 28 # Set the ignore count on the breakpoint location. 29 location.SetIgnoreCount(2) 30 self.assertTrue(location.GetIgnoreCount() == 2, 56 SBBreakpoint supports breakpoint location iteration, for example,:: 59 print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress())) [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | SourceManager.h | 13 /// location, an expansion location, and a presumed location. 26 /// The expansion location is the line in the source code where the macro 27 /// was expanded (the return statement), the spelling location is the 28 /// location in the source where the macro was originally defined, 29 /// and the presumed location is where the line directive states that 218 /// \param Loc If specified, is the location that invalid file diagnostics 300 /// The location of the \#include that brought in this file. 358 /// Each ExpansionInfo encodes the expansion location - where 372 /// invalid location. 417 /// expanded), and SpellingLoc specifies the spelling location (where [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/nintendo/ |
H A D | wii.txt | 31 - reg : should contain the VI registers location and length 42 - reg : should contain the PI registers location and length 64 - reg : should contain the DSP registers location and length 76 - reg : should contain the SI registers location and length 87 - reg : should contain the AI registers location and length 97 - reg : should contain the EXI registers location and length 107 - reg : should contain the EHCI registers location and length 117 - reg : should contain the SDHCI registers location and length 126 - reg : should contain the IPC registers location and length 138 - reg : should contain the controller registers location an [all...] |
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | NSString.cpp | 138 uint64_t location = 2 * ptr_size + valobj_addr; in NSStringSummaryProvider() local 139 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 143 options.SetLocation(location); in NSStringSummaryProvider() 156 options.SetLocation(location + 1); in NSStringSummaryProvider() 170 uint64_t location = 3 * ptr_size + valobj_addr; in NSStringSummaryProvider() local 172 options.SetLocation(location); in NSStringSummaryProvider() 183 uint64_t location = valobj_addr + 2 * ptr_size; in NSStringSummaryProvider() local 188 location += ptr_size; in NSStringSummaryProvider() 190 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 194 options.SetLocation(location); in NSStringSummaryProvider() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | AssignmentTrackingAnalysis.h | 27 /// Variable location definition used by FunctionVarLocs. 41 /// List of variable location changes grouped by the instruction the 43 /// zero to SingleVarLocEnd represent variables with a single location. 46 /// location that is valid for the entire scope. Range starts at 0. 53 /// Return the DILocalVariable for the location definition represented by \p in getDILocalVariable() 70 /// First single-location variable location definition. 72 /// One past the last single-location variable location definition. in locs_begin() 78 /// First variable location definitio [all...] |
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | DiagnosticRenderer.cpp | 97 // If we have no source location, just emit the diagnostic message. in emitDiagnostic() 116 // Find the ultimate expansion location for the diagnostic. in emitDiagnostic() 129 // If this location is within a macro, walk from UnexpandedLoc up to Loc in emitDiagnostic() 154 /// diagnostic level and location. 161 /// \param Loc The diagnostic location. 162 /// \param PLoc The presumed location of the diagnostic location. 199 // If this source location was imported from a module, print the module in emitIncludeStackRecursively() 204 // This location was imported by a module. Emit the module import stack. in emitIncludeStackRecursively() 217 /// Emit the module import stack associated with the current location. 274 // Only look at the immediate spelling location of this macro argument if in retrieveMacroLocation() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugLoc.h | 28 /// A single location within a location list. Entries are stored in the DWARF5 29 /// form even if they originally come from a DWARF<=4 location list. 34 /// The first value of the location entry (if applicable). 37 /// The second value of the location entry (if applicable). 43 /// The location expression itself (if applicable). 47 /// An abstract base class for various kinds of location tables (.debug_loc, 55 /// entry) in the location list starting at \p Offset. The callback can return 57 /// to parse the entire location list correctly. Upon successful termination 63 /// Dump the location list at the given \p Offset. The function returns true 92 /// The beginning offset where this location list is stored in the debug_loc [all …]
|