Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 81) sorted by relevance

1234

/freebsd/usr.sbin/setfmac/
H A Dsetfmac.c85 struct label_specs *specs; in main() local
95 specs = new_specs(); in main()
106 add_specs(specs, optarg, 0); in main()
115 add_specs(specs, optarg, 1); in main()
133 add_setfmac_specs(specs, *argv); in main()
137 if (argc == 0 || specs_empty(specs)) in main()
157 if (apply_specs(specs, ftsent, hflag, vflag)) { in main()
230 add_specs(struct label_specs *specs, const char *file, int is_sebsd) in add_specs() argument
280 STAILQ_INSERT_TAIL(&specs->head, spec, link); in add_specs()
284 add_setfmac_specs(struct label_specs *specs, char *label) in add_setfmac_specs() argument
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp89 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in ExtractContextAndIdentifier() local
91 std::size_t count = specs.size(); in ExtractContextAndIdentifier()
92 identifier = count > 0 ? specs[count - 1].GetBaseName() : ""; in ExtractContextAndIdentifier()
93 context = count > 1 ? specs[count - 2].GetFullName() : ""; in ExtractContextAndIdentifier()
100 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in DropScope() local
101 if (specs.empty()) in DropScope()
104 return specs[specs.size() - 1].GetBaseName(); in DropScope()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp114 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
115 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
140 specs.Append(module_spec); in GetModuleSpecifications()
144 specs.Append(module_spec); in GetModuleSpecifications()
148 specs.Append(module_spec); in GetModuleSpecifications()
152 specs.Append(module_spec); in GetModuleSpecifications()
158 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp199 SBModuleSpecList specs; in GetModuleSpecifications() local
203 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_up); in GetModuleSpecifications()
204 return specs; in GetModuleSpecifications()
247 SBModuleSpecList specs; in FindMatchingSpecs() local
249 *specs.m_opaque_up); in FindMatchingSpecs()
250 return specs; in FindMatchingSpecs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp218 lldb_private::ModuleSpecList specs; in LocateExecutableSymbolFile() local
220 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, specs); in LocateExecutableSymbolFile()
226 if (specs.GetModuleSpecAtIndex(0, mspec) && in LocateExecutableSymbolFile()
227 specs.GetModuleSpecAtIndex(1, mspec2) && in LocateExecutableSymbolFile()
237 if (specs.GetModuleSpecAtIndex(0, mspec)) { in LocateExecutableSymbolFile()
/freebsd/lib/libc/stdio/
H A Dxprintf.c654 register_printf_render_std(const char *specs) in register_printf_render_std() argument
657 for (; *specs != '\0'; specs++) { in register_printf_render_std()
658 switch (*specs) { in register_printf_render_std()
660 register_printf_render(*specs, in register_printf_render_std()
665 register_printf_render(*specs, in register_printf_render_std()
670 register_printf_render(*specs, in register_printf_render_std()
675 register_printf_render(*specs, in register_printf_render_std()
680 register_printf_render(*specs, in register_printf_render_std()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp434 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in CreateInstance()
445 const size_t initial_count = specs.GetSize(); in CreateInstance()
472 specs)) { in MagicBytesMatch()
474 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in MagicBytesMatch()
489 specs)) { in ObjectContainerBSDArchive()
491 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in SetArchive()
503 const size_t end_count = specs.GetSize(); in ParseHeader()
510 if (specs in ParseHeader()
563 GetModuleSpecifications(const lldb_private::FileSpec & file,lldb::DataBufferSP & data_sp,lldb::offset_t data_offset,lldb::offset_t file_offset,lldb::offset_t file_size,lldb_private::ModuleSpecList & specs) GetModuleSpecifications() argument
[all...]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp223 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
224 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
235 file, entry_offset, file_size - entry_offset, specs)) { in GetModuleSpecifications()
236 ModuleSpec &spec = specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
242 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp109 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
128 specs.Append(ModuleSpec(file, ArchSpec("i686-unknown-windows-msvc"))); in GetModuleSpecifications()
131 specs.Append(ModuleSpec(file, ArchSpec("x86_64-unknown-windows-msvc"))); in GetModuleSpecifications()
134 specs.Append(ModuleSpec(file, ArchSpec("armv7-unknown-windows-msvc"))); in GetModuleSpecifications()
137 specs.Append(ModuleSpec(file, ArchSpec("aarch64-unknown-windows-msvc"))); in GetModuleSpecifications()
H A DObjectFileCOFF.h59 lldb_private::ModuleSpecList &specs);
76 uint32_t GetDependentModules(lldb_private::FileSpecList &specs) override { in GetDependentModules() argument
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
H A DObjectFile.cpp199 ModuleSpecList &specs, in GetModuleSpecifications() argument
216 specs); in GetModuleSpecifications()
224 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
225 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
234 if (callback(file, data_sp, data_offset, file_offset, file_size, specs) > 0) in GetModuleSpecifications()
235 return specs.GetSize() - initial_count; in GetModuleSpecifications()
244 if (callback(file, data_sp, data_offset, file_offset, file_size, specs) > 0) in GetModuleSpecifications()
245 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DObjectFileMinidump.cpp53 lldb::offset_t length, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
54 specs.Clear(); in GetModuleSpecifications()
H A DObjectFileMinidump.h54 lldb_private::ModuleSpecList &specs);
/freebsd/crypto/openssl/doc/
H A Dbuild.info.in39 # The build.info format requires file specs to be in Unix format.
40 # Especially, since VMS file specs use [ and ], the build.info parser
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/
H A DLoongArch.def108 // v2.10 LoongArch ABI specs.
110 // Spec addition: https://github.com/loongson/la-abi-specs/pull/1
125 // v2.20 LoongArch ABI specs.
127 // Spec addition: https://github.com/loongson/la-abi-specs/pull/4
131 // v2.30 LoongArch ABI specs.
133 // Spec addition: https://github.com/loongson/la-abi-specs/pull/5
/freebsd/contrib/file/magic/Magdir/
H A Debml5 # https://www.matroska.org/technical/specs/index.html#track
H A Dpwsafe8 # file format specs
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp95 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
102 specs.Append(spec); in GetModuleSpecifications()
/freebsd/sys/contrib/device-tree/Bindings/mmc/
H A Dmmci.txt13 as the VCC/VDD supply in the eMMC/SD specs.
21 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
H A Dsdhci-fujitsu.txt17 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
/freebsd/sys/contrib/device-tree/Bindings/w1/
H A Dw1-gpio.txt6 - gpios: one or two GPIO specs:
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp106 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
144 specs.Append(spec); in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h172 lldb::offset_t file_size, ModuleSpecList &specs,
180 lldb_private::ModuleSpecList &specs);
/freebsd/include/
H A Dprintf.h126 int register_printf_render_std(const char *specs);

1234