Searched refs:object (Results 101 - 125 of 882) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DError.cpp18 using namespace object;
32 return "llvm.object";
39 return "No object file for requested architecture";
41 return "The file was not recognized as a valid object file";
51 return "Bitcode section not found in object file";
76 const std::error_category &object::object_category() {
80 llvm::Error llvm::object::isNotObjectErrorInvalidFileType(llvm::Error Err) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp23 using namespace llvm::object;
65 RuntimeDyldCOFF::loadObject(const object::ObjectFile &O) {
77 // The value in a relocatable COFF object is the offset.
81 bool RuntimeDyldCOFF::isCompatibleFile(const object::ObjectFile &Obj) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp56 std::unique_ptr<object::ObjectFile>
66 Expected<std::unique_ptr<object::ObjectFile>> ObjOrErr =
67 object::ObjectFile::createObjectFile(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp54 loadObj(StringRef Filename, object::OwningBinary<object::ObjectFile> &ObjFile,
71 auto I = llvm::find_if(Sections, [&](object::SectionRef Section) {
91 uint32_t RelativeRelocation = [](object::ObjectFile *ObjFile) {
92 if (const auto *ELFObj = dyn_cast<object::ELF32LEObjectFile>(ObjFile))
94 else if (const auto *ELFObj = dyn_cast<object::ELF32BEObjectFile>(ObjFile))
96 else if (const auto *ELFObj = dyn_cast<object::ELF64LEObjectFile>(ObjFile))
98 else if (const auto *ELFObj = dyn_cast<object::ELF64BEObjectFile>(ObjFile))
105 object::RelocationResolver Resolver;
107 object
[all...]
/freebsd-11-stable/lib/libvgl/
H A Dmain.c479 * the ordinary memory bitmap object is stored in. XXX
529 VGLSetVScreenSize(VGLBitmap *object, int VXsize, int VYsize) argument
531 if (VXsize < object->Xsize || VYsize < object->Ysize)
533 if (object->Type == MEMBUF)
538 object->VXsize = VGLAdpInfo.va_line_width
540 object->VYsize = VGLBufSize/VGLModeInfo.vi_planes/VGLAdpInfo.va_line_width;
541 if (VYsize < object->VYsize)
542 object->VYsize = VYsize;
546 object
553 VGLPanScreen(VGLBitmap *object, int x, int y) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h27 namespace object { namespace in namespace:llvm
81 FixedStreamArray<object::coff_section> getSectionHeaders() const;
84 FixedStreamArray<object::FpoData> getOldFpoRecords() const;
125 FixedStreamArray<object::coff_section> SectionHeaders;
128 FixedStreamArray<object::FpoData> OldFpoRecords;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp68 return llvm::make_error<llvm::object::GenericBinaryError>(
72 return llvm::make_error<llvm::object::GenericBinaryError>(
76 return llvm::make_error<llvm::object::GenericBinaryError>(
81 return llvm::make_error<llvm::object::GenericBinaryError>(
115 return llvm::make_error<llvm::object::GenericBinaryError>(
H A DDWARFAbbreviationDeclaration.cpp39 return llvm::make_error<llvm::object::GenericBinaryError>(
55 return llvm::make_error<llvm::object::GenericBinaryError>(
66 return llvm::make_error<llvm::object::GenericBinaryError>(
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h39 namespace object { namespace in namespace:llvm
44 } // namespace object
82 using llvm::object::WasmObjectFile;
83 using llvm::object::WasmSection;
84 using llvm::object::WasmSegment;
85 using llvm::object::WasmSymbol;
/freebsd-11-stable/sys/geom/vinum/
H A Dgeom_vinum_move.c48 char buf[20], *destination, *object; local
80 object = gctl_get_param(req, buf, NULL);
81 if (object == NULL)
84 type = gv_object_type(sc, object);
87 "'%s' is not a subdisk", object);
91 s = gv_find_sd(sc, object);
93 gctl_error(req, "unknown subdisk '%s'", object);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h32 using namespace object;
59 object::SectionedAddress ModuleOffset);
61 object::SectionedAddress ModuleOffset);
64 object::SectionedAddress ModuleOffset);
66 object::SectionedAddress ModuleOffset);
69 object::SectionedAddress ModuleOffset);
77 // Bundles together object file with code/data and object file with
83 object::SectionedAddress ModuleOffset);
107 /// Returns pair of pointers to object an
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.h27 namespace object { namespace in namespace:llvm
30 } // namespace object
44 object::OwningBinary<object::Binary> CoffObject;
46 PointerUnion<PDBFile *, object::COFFObjectFile *, MemoryBuffer *> PdbOrObj;
66 object::COFFObjectFile &obj();
67 const object::COFFObjectFile &obj() const;
148 Optional<object::section_iterator> SectionIter;
/freebsd-11-stable/sys/vm/
H A Dvm_pageout.c246 * Lock vm object currently associated with `m'. VM_OBJECT_TRYWLOCK is
249 * while locking the vm object. Use marker page to detect page queue
251 * TRUE if no changes were detected, FALSE otherwise. vm object is
264 vm_object_t object; local
269 object = m->object;
274 VM_OBJECT_WLOCK(object);
279 * The page's object might have changed, and/or the page might
281 * page's object has changed, then the caller should abandon
282 * processing the page because the wrong object loc
344 vm_object_t object; local
466 vm_object_t object = mc[0]->object; local
575 vm_object_t object; local
690 vm_object_t object; local
1075 vm_object_t object; local
[all...]
/freebsd-11-stable/tests/sys/mac/bsdextended/
H A Dmatches_test.sh119 ugidfw set 1 subject uid $uidrange object mode rasx
137 ugidfw set 1 subject gid $gidrange object mode rasx
161 ugidfw set 1 subject jailid $jailid object mode rasx
188 ugidfw set 1 subject object uid $uidrange mode rasx
190 desc="object uid in range"
197 desc="object uid out range"
203 ugidfw set 1 subject object uid $uidrange mode rasx
205 desc="object uid in range (different subject)"
212 desc="object uid out range (different subject)"
222 ugidfw set 1 subject object gi
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h27 // to that object.
188 SmallVector<object::OwningBinary<object::Archive>, 2> Archives;
191 SmallVector<std::unique_ptr<object::ObjectFile>, 2> LoadedObjects;
216 void addObjectFile(std::unique_ptr<object::ObjectFile> O) override;
217 void addObjectFile(object::OwningBinary<object::ObjectFile> O) override;
218 void addArchive(object::OwningBinary<object::Archive> O) override;
232 /// Sets the object manage
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h34 const object::ELFObjectFile<ELFT> *ObjF;
41 PrinterContext(ScopedPrinter &W, const object::ELFObjectFile<ELFT> *ObjF)
48 static const typename object::ELFObjectFile<ELFT>::Elf_Shdr *
49 findSectionByAddress(const object::ELFObjectFile<ELFT> *ObjF, uint64_t Addr) {
62 const object::ELFFile<ELFT> *Obj = ObjF->getELFFile();
73 reportError(object::createError(
107 const object::ELFFile<ELFT> *Obj = ObjF->getELFFile();
128 object::createError("only version 1 of .eh_frame_hdr is supported"),
134 reportError(object::createError("unexpected encoding eh_frame_ptr_enc"),
140 reportError(object
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dunwind-dw2-fde-darwin.c54 #define KEYMGR_GCC3_DW2_OBJ_LIST 302 /* Dwarf2 object list */
69 struct object *seen_objects;
70 struct object *unseen_objects;
95 object that's part of the live
104 because this object might be about to be unloaded. Called by
141 give each unseen image a new `struct object'. Even if we can't,
181 struct object *ob = NULL;
182 struct object panicob;
185 ob = calloc (1, sizeof (struct object));
204 struct object **
[all...]
H A Dcrtstuff.c36 This file is useful on target machines where the object file format
129 extern void __register_frame_info (const void *, struct object *)
131 extern void __register_frame_info_bases (const void *, struct object *,
223 in every shared-object; in a main program its value is zero. The
224 object should in any case be protected. This means the instance
225 in one DSO or the main program is not used in another object. The
324 static struct object object; local
330 __register_frame_info_bases (__EH_FRAME_BEGIN__, &object, tbase, dbase);
333 __register_frame_info (__EH_FRAME_BEGIN__, &object);
[all...]
/freebsd-11-stable/sys/dev/isci/scil/
H A Dscic_sds_smp_remote_device.c60 * object methods and it's state machines.
137 * @param[in] device This is the device object that is receiving the IO.
156 * @param[in] device This is the device object that is receiving the IO.
206 * @param[in] this_device This is the device object that is receiving the frame.
221 /// object.
282 * @param[in] object This is the SCI_BASE_OBJECT which is cast into a
289 SCI_BASE_OBJECT_T *object
292 SCIC_SDS_REMOTE_DEVICE_T *this_device = (SCIC_SDS_REMOTE_DEVICE_T *)object;
309 * @param[in] object This is the SCI_BASE_OBJECT which is cast into a
316 SCI_BASE_OBJECT_T *object
[all...]
H A Dscic_sds_ssp_request.c60 * SCIC_SDS_IO_REQUEST object.
281 * @param[in] object This parameter specifies the request object for which
288 SCI_BASE_OBJECT_T *object
291 SCIC_SDS_REQUEST_T *this_request = (SCIC_SDS_REQUEST_T *)object;
306 * @param[in] object This parameter specifies the request object for which
313 SCI_BASE_OBJECT_T *object
316 SCIC_SDS_REQUEST_T *this_request = (SCIC_SDS_REQUEST_T *)object;
/freebsd-11-stable/lib/libgssapi/
H A Dgss_set_cred_option.c45 const gss_OID object,
84 minor_status, &mc->gmc_cred, object, value);
111 &mc->gmc_cred, object, value);
43 gss_set_cred_option(OM_uint32 *minor_status, gss_cred_id_t *cred_handle, const gss_OID object, const gss_buffer_t value) argument
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_set_cred_option.c38 const gss_OID object,
77 minor_status, &mc->gmc_cred, object, value);
104 &mc->gmc_cred, object, value);
36 gss_set_cred_option(OM_uint32 *minor_status, gss_cred_id_t *cred_handle, const gss_OID object, const gss_buffer_t value) argument
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dx_attrib.c70 * ASN1_OBJECT *object;
92 ASN1_SIMPLE(X509_ATTRIBUTE, object, ASN1_OBJECT),
107 ret->object = OBJ_nid2obj(nid);
/freebsd-11-stable/gnu/usr.bin/groff/src/preproc/pic/
H A DMakefile4 SRCS= lex.cpp main.cpp object.cpp pic.cpp pic_tab.h \
/freebsd-11-stable/sys/kern/
H A Dimgact_aout.c161 vm_object_t object; local
277 object = imgp->object;
280 vm_object_reference(object);
283 error = vm_map_insert(map, object,
290 vm_object_deallocate(object);
295 vm_object_reference(object);
296 error = vm_map_insert(map, object,
303 vm_object_deallocate(object);

Completed in 402 milliseconds

1234567891011>>