/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBFrameExtensions.i | 38 a value that represents the variable expression path''' 43 …'''A helper object that exposes a flattened view of registers, masking away the notion of register… 70 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (… 71 …fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an u… 72 …sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an u… 73 …ule = property(GetModule, None, doc='''A read only property that returns an lldb object that repre… 74 … property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that repre… 75 …n = property(GetFunction, None, doc='''A read only property that returns an lldb object that repre… 76 …bol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that repre… 77 …lock = property(GetBlock, None, doc='''A read only property that returns an lldb object that repre… [all …]
|
H A D | SBTypeExtensions.i | 10 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''') 11 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''') 12 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''') 13 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''') 14 is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.''') 15 bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns the bitfield size in bits for this member as an integer, or zero if this member is not a bitfield.''') 56 module = property(GetModule, None, doc='''A read only property that returns the module in which type is defined.''') 57 name = property(GetName, None, doc='''A read only property that returns the name for this type as a string.''') 58 size = property(GetByteSize, None, doc='''A read only property that return [all...] |
H A D | SBValueExtensions.i | 10 '''A helper object that will lazily hand out thread for a process when supplied an index.''' 29 '''An accessor function that returns a children_access() object which allows lazy member variable access from a lldb.SBValue object.''' 33 '''An accessor function that returns a list() that contains all children in a lldb.SBValue object.''' 51 children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''') 52 child = property(get_child_access_object, None, doc='''A read only property that returns an object that can access children of a variable by index (child_value = value.children[12]).''') 53 name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''') 54 type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represent [all...] |
H A D | SBTargetExtensions.i | 41 …'''A helper object that will lazily hand out lldb.SBModule objects for a target when supplied an i… 95 …'''An accessor function that returns a modules_access() object which allows lazy module access fro… 99 …'''An accessor function that returns a list() that contains all modules in a lldb.SBTarget object.… 116 … '''A helper object that will lazily hand out bkpts for a target when supplied an index.''' 134 …'''An accessor function that returns a bkpts_access() object which allows lazy bkpt access from a … 138 …'''An accessor function that returns a list() that contains all bkpts in a lldb.SBtarget object.''' 150 … '''A helper object that will lazily hand out watchpoints for a target when supplied an index.''' 168 …'''An accessor function that returns a watchpoints_access() object which allows lazy watchpoint ac… 172 …'''An accessor function that returns a list() that contains all watchpoints in a lldb.SBtarget obj… 178 …'A read only property that returns a list() of lldb.SBModule objects contained in this target. Thi… [all …]
|
H A D | SBThreadExtensions.i | 20 '''A helper object that will lazily hand out frames for a thread when supplied an index.''' 38 '''An accessor function that returns a frames_access() object which allows lazy frame access from a lldb.SBThread object.''' 42 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.''' 48 id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''') 49 idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''') 50 return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''') 51 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represent [all...] |
H A D | SBAddressExtensions.i | 28 '''Convert an address to a load address if there is a process and that process is alive, or to a file address otherwise. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 43 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''') 44 compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) that this address resides within.''') 45 line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line entry (lldb.SBLineEntry) that thi [all...] |
H A D | SBProcessExtensions.i | 45 '''A helper object that will lazily hand out thread for a process when supplied an index.''' 63 '''An accessor function that returns a modules_access() object which allows lazy thread access from a lldb.SBProcess object.''' 67 '''An accessor function that returns a list() that contains all threads in a lldb.SBProcess object.''' 85 threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''') 86 thread = property(get_threads_access_object, None, doc='''A read only property that returns an object that can access threads by thread index (thread = lldb.process.thread[12]).''') 87 is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently alive.''') 88 is_running = property(__get_is_running__, None, doc='''A read only property that return [all...] |
H A D | SBSymbolExtensions.i | 17 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''') 18 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''') 19 type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''') 20 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''') 21 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''') 22 prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that return [all...] |
H A D | SBTypeCategoryExtensions.i | 13 '''A helper object that will lazily hand out formatters for a specific category.''' 42 '''An accessor function that returns an accessor object which allows lazy format access from a lldb.SBTypeCategory object.''' 46 '''An accessor function that returns a list() that contains all formats in a lldb.SBCategory object.''' 53 '''An accessor function that returns an accessor object which allows lazy summary access from a lldb.SBTypeCategory object.''' 57 '''An accessor function that returns a list() that contains all summaries in a lldb.SBCategory object.''' 64 '''An accessor function that returns an accessor object which allows lazy synthetic children provider access from a lldb.SBTypeCategory object.''' 68 '''An accessor function that returns a list() that contain [all...] |
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmont/ |
H A D | cache.json | 8 …on which likely indicates back pressure from L2Q. It also counts requests that would have gone dir… 27 …"PublicDescription": "Counts cycles that fetch is stalled due to an outstanding ICache miss. That … 37 …"PublicDescription": "Counts the number of demand and prefetch transactions that the L2 XQ rejects… 46 …"PublicDescription": "Counts memory requests originating from the core that miss in the L2 cache.", 56 …"PublicDescription": "Counts memory requests originating from the core that reference a cache line… 61 "BriefDescription": "Loads retired that came from DRAM (Precise event capable)", 80 …that when the load address was checked by other caching agents (typically another processor) in th… 85 "BriefDescription": "Load uops retired that hit L1 data cache (Precise event capable)", 92 "PublicDescription": "Counts load uops retired that hit the L1 data cache.", 97 "BriefDescription": "Load uops retired that missed L1 data cache (Precise event capable)", [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | bib | 4 And God saw the light, that it was good: and God divided the light from the darkness. 10 … land Earth; and the gathering together of the waters called he Seas: and God saw that it was good. 12 …nd the tree yielding fruit, whose seed was in itself, after his kind: and God saw that it was good. 18 …he day and over the night, and to divide the light from the darkness: and God saw that it was good. 20 …id, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fl… 21 …ng creature that moveth, which the waters brought forth abundantly, after their kind, and every wi… 25 … and cattle after their kind, and every thing that creepeth upon the earth after his kind: and God… 26 …nd over the cattle, and over all the earth, and over every creeping thing that creepeth upon the e… 28 …ish of the sea, and over the fowl of the air, and over every living thing that moveth upon the ear… 30 And to every beast of the earth, and to every fowl of the air, and to every thing that creepeth upo… [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/arm64/fujitsu/a64fx/ |
H A D | other.json | 9 …"PublicDescription": "This event counts every cycle that no operation was committed because the ol… 12 …"BriefDescription": "This event counts every cycle that no operation was committed because the old… 15 …"PublicDescription": "This event counts every cycle that no instruction was committed because the … 18 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o… 21 …"PublicDescription": "This event counts every cycle that no instruction was committed because the … 24 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o… 27 …"PublicDescription": "This event counts every cycle that no instruction was committed because the … 30 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o… 33 …"PublicDescription": "This event counts every cycle that no instruction was committed because the … 36 …"BriefDescription": "This event counts every cycle that no instruction was committed because the o… [all …]
|
/freebsd/sbin/ipf/ipf/ |
H A D | ipf.5 | 9 For use as a firewall, there are two important rule types: those that block 10 and drop packets (block rules) and those that allow packets through (pass 12 that specify under what conditions the result is to be applied and how. 14 The simplest rules that can be used in ipf.conf are expressed like this: 31 For rules lines that are particularly long, it is possible to split 60 This section goes into detail on how to construct firewall rules that 69 of a packet that matches it will be. Descriptions of the many and various 70 sections that can be used to match on the contents of packet headers will 77 rules that match a packet indicate to ipfilter that it should be 82 any further. Packets that are blocked on the "in" side are never seen by [all …]
|
/freebsd/crypto/openssl/crypto/engine/ |
H A D | README.md | 4 This "description" (if one chooses to call it that) needed some major updating 16 I'll mention a bit about that first. EVP_CIPHER (and most of this applies 18 identifier that, in the current API, "lingers". These cipher description + 20 or can be loaded "en masse" into EVP storage so that they can be catalogued and 39 The important point about this is that EVP_CIPHER definitions and structures are 41 rewrites of many applications, to assume that EVP_CIPHERs can be reference 44 such ciphers is via entirely distinct API calls that didn't exist before. 46 pointer, that has been passed to the caller, is no longer being used. 52 hooking in ENGINEs is that multiple ENGINEs may implement the same ciphers. The 53 solution is necessarily that ENGINE-provided ciphers simply are not registered, [all …]
|
/freebsd/contrib/dialog/ |
H A D | COPYING | 28 not price. Our General Public Licenses are designed to make sure that 30 for this service if you wish); that you receive source code or can get 31 it if you want it; that you can change the software and use pieces of 32 it in new free programs; and that you are informed that you can do 35 To protect your rights, we need to make restrictions that forbid 41 or for a fee, you must give the recipients all the rights that we gave 42 you. You must make sure that they, too, receive or can get the source 44 complete object files to the recipients, so that they can relink them 52 To protect each distributor, we want to make it very clear that 55 that what they have is not the original version, so that the original [all …]
|
/freebsd/share/doc/psd/18.gprof/ |
H A D | present.me | 5 .\" modification, are permitted provided that the following conditions 38 that are called during execution of the program, 43 A list of the routines that are never called during execution of 45 to verify that nothing important is omitted by 47 The flat profile gives a quick overview of the routines that are used, 48 and shows the routines that are themselves responsible 51 this profile usually shows that no single function 54 Notice that for this profile, 84 We cannot assume that a call graph is planar, 85 and even if it is, that we can print a planar version of it. [all …]
|
/freebsd/tools/tools/git/ |
H A D | HOWTO | 7 arcgit is a wrapper script around the arc command line tool that simplifies the 16 code that uses the new API. 20 introduced a bug early in your development process that you fixed in a 23 bug fix into the commit that introduced it, so that the bug is never 27 Differential, so try to give each commit a meaningful commit message that 33 C1 should be the first commit that you want reviewed, and C2 should be the 34 last commit that you want reviewed. You may add multiple reviewers by 36 to a review with the -C option. Note that if you subscribe a mailing list 45 automatically creates this branch for every review that it creates): 55 repository while (ensure that you are still on the review_D1234 branch): [all …]
|
/freebsd/contrib/bc/ |
H A D | NEWS.md | 5 This is a production release that fixes `Ctrl+d` on FreeBSD and Linux when using 8 This bug was caused by the macOS fix in `7.0.0`. Unfortunately, this means that 13 This is a production release that fixes a warning using GCC on FreeBSD. 21 The first bug is that `bc`/`dc` will exit on macOS when the terminal is resized. 23 The second bug is that an array, which should only be a function parameter, was 26 The third bug is that value stack for `dc` was cleared on any error. However, 35 The bug was that `bc` attempted to jump out when flushing `stdout` on exit, but 36 there is no jump buf at that point. 42 The bug is that sometimes numbers are printed to incorrect line lengths. The 61 This is a production release to remove some debugging code that I accidentally [all …]
|
/freebsd/contrib/libpcap/ |
H A D | pcap.3pcap.in | 5 .\" modification, are permitted provided that: (1) source code distributions 72 UTF-16LE string - note that this attempt is unsafe, as it may run past 75 returning a UTF-16LE string. Programs that don't call 102 To obtain a list of devices that can be opened for a live capture, call 109 will return the first device on that list that is not a ``loopback`` 122 for use in routines that require a 141 The options that can be set on a capture handle include 143 If, when capturing, you capture the entire contents of the packet, that 154 than the size of a packet that is captured, only the first 156 bytes of that packet will be captured and provided as packet data. [all …]
|
/freebsd/share/doc/papers/kernmalloc/ |
H A D | kernmalloc.t | 5 .\" modification, are permitted provided that the following conditions 97 that can be used by all of the kernel subsystems. 99 patterns in the UNIX kernel and a hybrid strategy that is time-efficient 105 and is quick enough that no performance loss is observed 118 Often the allocations are for small pieces of memory that are only 130 Examples include protocol control blocks that remain throughout 146 for name translation that allocates a pool of empty buffers. 177 size of memory that is needed. 187 The first criterion for a memory allocator is that it make good use 203 Here, ``requested'' is the sum of the memory that has been requested [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/knightslanding/ |
H A D | memory.json | 11 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for r… 22 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for d… 33 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for d… 44 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for r… 55 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for d… 66 …"BriefDescription": "Counts Demand code reads and prefetch code read requests that accounts for d… 77 …"BriefDescription": "Counts Demand cacheable data and L1 prefetch data read requests that account… 88 …"BriefDescription": "Counts Demand cacheable data and L1 prefetch data read requests that account… 99 …"BriefDescription": "Counts Demand cacheable data and L1 prefetch data read requests that account… 110 …"BriefDescription": "Counts Demand cacheable data and L1 prefetch data read requests that account… [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/silvermont/ |
H A D | cache.json | 3 …"BriefDescription": "Counts the number of request that were not accepted into the L2Q because the … 7 …that would have gone directly to the XQ, but are rejected due to a full or nearly full condition, … 15 …that fetch is stalled due to an outstanding ICache miss. That is, the decoder queue is able to acc… 20 … "BriefDescription": "Counts the number of request from the L2 that were not accepted into the XQ", 24 …"PublicDescription": "This event counts the number of demand and prefetch transactions that the L2… 41 …"PublicDescription": "This event counts requests originating from the core that references a cache… 69 …"PublicDescription": "This event counts the number of load ops retired that got data from the othe… 78 …ption": "This event counts the number of load ops retired that miss in L1 Data cache. Note that pr… 88 "PublicDescription": "This event counts the number of load ops retired that hit in the L2.", 98 … "PublicDescription": "This event counts the number of load ops retired that miss in the L2.", [all …]
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | COPYING.gplv3 | 23 price. Our General Public Licenses are designed to make sure that you 25 them if you wish), that you receive source code or can get it if you 26 want it, that you can change the software or use pieces of it in new 27 free programs, and that you know you can do these things. 36 freedoms that you received. You must make sure that they, too, receive 40 Developers that use the GNU GPL protect your rights with two steps: 45 that there is no warranty for this free software. For both users' and 46 authors' sake, the GPL requires that modified versions be marked as 47 changed, so that their problems will not be attributed erroneously to 63 software on general-purpose computers, but in those that do, we wish to [all …]
|
/freebsd/lib/libpmc/ |
H A D | pmc.westmereuc.3 | 4 .\" modification, are permitted provided that the following conditions 46 Fixed-function counters that count only one hardware event per counter. 48 Programmable counters that may be configured to count one of a defined 146 The latency represents the time after which the L3 has determined that the 148 The time between a GQ read tracker allocation and the L3 determining that 154 Counts the number of GQ read tracker entries that are allocated in the read 155 tracker queue that hit or miss the L3. 159 Counts the number of GQ read tracker entries that are allocated in the read 166 Counts the number of GQ write tracker entries that are allocated in the 173 Counts the number of GQ write tracker entries that are allocated in the write [all …]
|
/freebsd/share/doc/papers/relengr/ |
H A D | 3.t | 5 .\" modification, are permitted provided that the following conditions 37 Projects that are not selected for completion are 65 The new software includes the successful projects that have been 69 contributed software that has been offered during the development 78 During the period that the alpha distribution is being created, 115 that are affected, 118 The incompatibilities that are found and left in are noted 119 in a list that is later incorporated into the release notes. 121 in their own software that will require change. 124 it is installed and becomes the running system that [all …]
|