Home
last modified time | relevance | path

Searched full:location (Results 1 – 25 of 3625) sorted by relevance

12345678910>>...145

/freebsd/contrib/llvm-project/clang/include/clang-c/
H A DCXSourceLocation.h1 /*===-- 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
81 * \returns non-zero if the first source location comes
88 * Returns non-zero if the given source location is in a system header.
90 CINDEX_LINKAGE int clang_Location_isInSystemHeader(CXSourceLocation location);
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DAssertFrameRecognizer.cpp17 /// 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 Dbitstring_test.c398 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 DBreakpointLocation.h30 /// A breakpoint location is defined by the breakpoint that produces it,
32 /// breakpoint location also may have a breakpoint site if its address has
35 /// FIXME: Should we also store some fingerprint for the location, so
36 /// we can map one location to the "equivalent location" on rerun? This would
44 /// Gets the load address for this breakpoint location \return
45 /// Returns breakpoint location load address, \b
49 /// Gets the Address for this breakpoint location \return
50 /// Returns breakpoint location Address.
52 /// Gets the Breakpoint that created this breakpoint location \return
59 /// location.
[all …]
H A DBreakpointLocationList.h25 /// 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 DBreakpointLocationCollection.h31 /// 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 DBreakpoint.h43 /// 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/AST/
H A DOpenMPClause.h56 /// 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 DStmtOpenMP.h272 /// Starting location of the directive (directive keyword).
274 /// Ending location of the directive.
292 /// \param StartLoc Starting location of the directive (directive keyword).
293 /// \param EndLoc Ending location of the directive.
487 /// Returns starting location of directive kind.
489 /// Returns ending location of directive.
492 /// Set starting location of directive kind.
494 /// \param Loc New starting location of directive.
497 /// Set ending location of directive.
499 /// \param Loc New ending location of directive.
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/Builder/
H A DCIRBaseBuilder.h23 #include "mlir/IR/Location.h"
64 mlir::Value getConstAPInt(mlir::Location loc, mlir::Type typ, in getConstAPInt()
69 cir::ConstantOp getConstant(mlir::Location loc, mlir::TypedAttr attr) { in getConstant()
73 cir::ConstantOp getConstantInt(mlir::Location loc, mlir::Type ty, in getConstantInt()
79 cir::ConstantOp getNullValue(mlir::Type ty, mlir::Location loc) { in getNullValue()
109 cir::ConstantOp getBool(bool state, mlir::Location loc) { in getBool()
112 cir::ConstantOp getFalse(mlir::Location loc) { return getBool(false, loc); } in getFalse()
113 cir::ConstantOp getTrue(mlir::Location loc) { return getBool(true, loc); } in getTrue()
139 mlir::Location loc, in createDoWhile()
140 llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> condBuilder, in createDoWhile()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DProgramPoint.h10 // distinct location in a function.
249 static bool isKind(const ProgramPoint &Location) { in isKind() argument
250 return Location.getKind() == BlockEntranceKind; in isKind()
270 static bool isKind(const ProgramPoint &Location) { in isKind() argument
271 return Location.getKind() == BlockExitKind; in isKind()
293 static bool isKind(const ProgramPoint &Location) { in isKind() argument
294 unsigned k = Location.getKind(); in isKind()
311 static bool isKind(const ProgramPoint &Location) { in isKind() argument
312 return Location.getKind() == PreStmtKind; in isKind()
334 static bool isKind(const ProgramPoint &Location) { in isKind() argument
[all …]
/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_get_loclist_entry.332 .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 Ddwarf_loclist.333 .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 Dbitstring.3209 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/lldb/bindings/interface/
H A DSBBreakpointLocationExtensions.i11 …perty(GetAddress, doc='A read only property that returns the address of this breakpoint location.')
12 …oc='A read/write property that configures the auto-continue property of this breakpoint location.')
13 …kpoint, doc='A read only property that returns the parent breakpoint of this breakpoint location.')
14 …tCondition, doc='A read/write property that configures the condition of this breakpoint location.')
15 …ty(GetHitCount, doc='A read only property that returns the hit count of this breakpoint location.')
16 … id = property(GetID, doc='A read only property that returns the id of this breakpoint location.')
17 …reCount, doc='A read/write property that configures the ignore count of this breakpoint location.')
18 …LoadAddress, doc='A read only property that returns the load address of this breakpoint location.')
19 …, doc='A read/write property that configures the queue name criteria of this breakpoint location.')
20 …D, doc='A read/write property that configures the thread id criteria of this breakpoint location.')
[all …]
H A DSBBreakpointDocstrings.i21 # 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/llvm/include/llvm/Support/
H A DModRef.h77 using Location = LocationEnum;
85 static uint32_t getLocationPos(Location Loc) { in getLocationPos()
91 void setModRef(Location Loc, ModRefInfo MR) { in setModRef()
97 /// Returns iterator over all supported location kinds.
99 return enum_seq_inclusive(Location::First, Location::Last, in locations()
103 /// Create MemoryEffectsBase that can access only the given location with the
105 MemoryEffectsBase(Location Loc, ModRefInfo MR) { setModRef(Loc, MR); } in MemoryEffectsBase()
107 /// Create MemoryEffectsBase that can access any location with the given
110 for (Location Loc : locations()) in MemoryEffectsBase()
136 return MemoryEffectsBase(Location::ArgMem, MR);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/LowLevel/
H A DDWARFUnwindTable.h25 /// A class that represents a location for the Call Frame Address (CFA) or a
30 enum Location { enum
59 Location Kind; /// The type of the location that describes how to unwind it.
66 bool Dereference; /// If true, the resulting location must be dereferenced
67 /// after the location value is computed.
71 UnwindLocation(Location K) in UnwindLocation()
75 UnwindLocation(Location K, uint32_t Reg, int32_t Off, in UnwindLocation()
84 /// Create a location whose rule is set to Unspecified. This means the
88 /// Create a location where the value is undefined and not available. This can
91 /// Create a location where the value is known to be in the register itself.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp64 // 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/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h13 /// 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/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMapFile.h40 SourceLocation Location; member
45 SourceLocation Location; member
51 SourceLocation Location; member
67 SourceLocation Location; member
72 SourceLocation Location; /// Points to the first keyword in the decl. member
83 SourceLocation Location; member
89 SourceLocation Location; member
94 SourceLocation Location; member
99 SourceLocation Location; member
105 SourceLocation Location; member
[all …]
/freebsd/sys/contrib/device-tree/Bindings/powerpc/nintendo/
H A Dwii.txt31 - 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 and length
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dzfs_set_keylocation.ksh32 # 1. Verify the key location of the default dataset is 'none'
33 # 2. Attempt to change the key location of the default dataset
35 # 4. Attempt to change the key location of the encrypted dataset to 'none',
36 # an invalid location, its current location, and 'prompt'
37 # 5. Attempt to reload the encrypted dataset key using the new key location
39 # 7. Verify the key location of the child dataset is 'none'
40 # 8. Attempt to change the key location of the child dataset
41 # 9. Verify the key location of the child dataset has not changed
54 log_assert "Key location can only be 'prompt', 'file://', or 'https://'" \
98 log_pass "Key location can only be 'prompt', 'file://', or 'https://'" \
/freebsd/contrib/ntp/sntp/libevent/sample/
H A Dhttp-connect.c23 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 Dhttp-connect.c23 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()

12345678910>>...145