Searched refs:object (Results 201 - 225 of 882) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h9 // Contains the definition for an RTDyld-based, in-process object linking layer.
40 /// Functor for receiving object-loaded notifications.
42 std::function<void(VModuleKey, const object::ObjectFile &Obj,
59 /// Emit the object.
78 /// If set to true, all sections in each object file will be allocated using
88 /// returned by RuntimeDyld for any given object file with the flags supplied
91 /// SF_Exported flag. Use only when generating / adding COFF object files.
102 /// for any symbols provided by a given object file that were not already in
120 object::ObjectFile &Obj,
144 /// Holds an object t
[all...]
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dlist.c68 new_entry(void *object, bool managed) argument
75 le->m_object = object;
78 free(object);
95 new_entry_and_link(void *object, bool managed, struct list_entry *prev, argument
100 le = new_entry(object, managed);
/freebsd-11-stable/sys/dev/isci/scil/
H A Dscic_sds_remote_device.c674 * device object.
712 * This method will stop the state machine logging for this object and should
713 * be called before the object is destroyed.
945 * @param[in] user_parameter This is cast to a remote device object.
967 * ready state. This is the indication that the remote device object can also
970 * @param[in] user_parameter This is cast to a remote device object.
1297 * to the remote device from the controller object.
1299 * @param [in] this_device This is the device object that is receiving the
1345 * device object to process.
1408 * device object t
[all...]
H A Dscif_sas_smp_activity_clear_affiliation.c59 * @brief This file contains the methods for the SCIF_SAS_SMP_REMMOTE object's
142 (SCIF_SAS_SMP_PHY_T *)smp_device->smp_phy_list.list_head->object
207 smp_device->curr_clear_affiliation_phy->list_element.next->object
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_tx.c131 dmu_tx_hold_object_impl(dmu_tx_t *tx, objset_t *os, uint64_t object, argument
138 if (object != DMU_NEW_OBJECT) {
139 err = dnode_hold(os, object, FTAG, &dn);
155 * If we're syncing, they can manipulate any object anyhow, and
287 dmu_tx_hold_write(dmu_tx_t *tx, uint64_t object, uint64_t off, int len) argument
296 object, THT_WRITE, off, len);
304 dmu_tx_hold_remap_l1indirect(dmu_tx_t *tx, uint64_t object) argument
310 object, THT_WRITE, 0, 0);
402 * dnode_reallocate() can result in an object with indirect
442 dmu_tx_hold_free(dmu_tx_t *tx, uint64_t object, uint64_ argument
515 dmu_tx_hold_zap(dmu_tx_t *tx, uint64_t object, int add, const char *name) argument
541 dmu_tx_hold_bonus(dmu_tx_t *tx, uint64_t object) argument
1253 dmu_tx_hold_spill(dmu_tx_t *tx, uint64_t object) argument
1302 uint64_t object; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp103 // the object has been emitted.
106 auto Obj = object::ObjectFile::createObjectFile(*ObjBuffer);
114 // Collect the internal symbols from the object file: We will need to
119 if (!(Sym.getFlags() & object::BasicSymbolRef::SF_Global)) {
134 // Create a record a memory manager for this object.
158 VModuleKey K, MaterializationResponsibility &R, object::ObjectFile &Obj,
167 if (auto *COFFObj = dyn_cast<object::COFFObjectFile>(&Obj)) {
174 if (Sym.getFlags() & object::BasicSymbolRef::SF_Undefined)
207 // Override object flags and claim responsibility for symbols if
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h78 MachOLinkGraphBuilder(const object::MachOObjectFile &Obj);
82 const object::MachOObjectFile &getObject() const { return Obj; }
155 static unsigned getPointerSize(const object::MachOObjectFile &Obj);
156 static support::endianness getEndianness(const object::MachOObjectFile &Obj);
187 const object::MachOObjectFile &Obj;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h23 using namespace llvm::object;
130 loadObject(const object::ObjectFile &O) override;
134 bool isCompatibleFile(const object::ObjectFile &Obj) const override;
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DSymbolTable.h93 const llvm::object::coff_symbol_generic *s = nullptr,
97 const llvm::object::coff_symbol_generic *s = nullptr);
99 const llvm::object::coff_symbol_generic *s = nullptr,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dinftarg.c555 /* Perform a partial transfer to/from the specified object. For
559 child_xfer_partial (struct target_ops *ops, enum target_object object, argument
563 switch (object)
578 return NATIVE_XFER_UNWIND_TABLE (ops, object, annex, readbuf, writebuf,
585 return NATIVE_XFER_AUXV (ops, object, annex, readbuf, writebuf,
592 return NATIVE_XFER_WCOOKIE (ops, object, annex, readbuf, writebuf,
599 return NATIVE_XFER_DIRTY (ops, object, annex, readbuf, writebuf,
H A Dbfd-target.c73 enum target_object object,
77 switch (object)
72 target_bfd_xfer_partial(struct target_ops *ops, enum target_object object, const char *annex, void *readbuf, const void *writebuf, ULONGEST offset, LONGEST len) argument
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509name.c127 if (OBJ_cmp(ne->object, obj) == 0)
355 ASN1_OBJECT_free(ne->object);
356 ne->object = OBJ_dup(obj);
357 return ((ne->object == NULL) ? 0 : 1);
370 OBJ_obj2nid(ne->object)) ? 1 : 0;
389 return (ne->object);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h56 namespace object { namespace in namespace:llvm
61 } // end namespace object
101 /// The state object holding the global address mapping, which must be
180 /// object into memory and adds its symbols to the list used to resolve
184 /// needed by another object.
187 virtual void addObjectFile(std::unique_ptr<object::ObjectFile> O);
188 virtual void addObjectFile(object::OwningBinary<object::ObjectFile> O);
194 /// in the Archive the contained object file will be extracted (in memory)
196 virtual void addArchive(object
[all...]
/freebsd-11-stable/contrib/libucl/lua/
H A Dtest.lua13 '"object",{"key":"value"}'..
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.d56 printf("fh3_flags: %d\n", args[2]->object.fh3_flags);
/freebsd-11-stable/crypto/heimdal/base/
H A Darray.c59 "dict-object",
101 * Append object to array
104 * @param object the object to add
110 heim_array_append_value(heim_array_t array, heim_object_t object) argument
118 array->val[array->len++] = heim_retain(object);
127 * @param fn function to call on each object
144 * @param fn block to call on each object
173 * @param array array copy object from
174 * @param idx index of object,
[all...]
/freebsd-11-stable/lib/libc/arm/sys/
H A Dbrk.S48 .type _C_LABEL(minbrk),#object
/freebsd-11-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd3.h194 # define AMU_LOOKUP3RES_FH_LEN(x) (AMU_LOOKUP3RES_OK(x).object.data.data_len)
195 # define AMU_LOOKUP3RES_FH_DATA(x) (AMU_LOOKUP3RES_OK(x).object.data.data_val)
/freebsd-11-stable/usr.sbin/bsnmpd/tools/bsnmptools/
H A Dbsnmpget.c353 warnx("Only leaf object values can be added to GET PDU");
415 * Loop through the object list and set object->error to the
659 parse_int_string(struct snmp_object *object, char *val) argument
664 return ((parse_int(&(object->val), val)));
666 if (object->info == NULL) {
670 if ((v = enum_number_lookup(object->info->snmp_enum, val)) < 0)
673 object->val.v.integer = v;
854 struct snmp_object *object, char *str)
874 if (syn != object
853 parse_syntax_strval(struct snmp_toolinfo *snmptoolctx, struct snmp_object *object, char *str) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h30 namespace object { namespace in namespace:llvm
76 object::COFFObjectFile &getObj();
H A DInputFile.cpp31 using namespace llvm::object;
66 static inline bool isCodeViewDebugSubsection(object::SectionRef Section,
93 static inline bool isDebugSSection(object::SectionRef Section,
311 object::COFFObjectFile &InputFile::obj() {
313 return *PdbOrObj.get<object::COFFObjectFile *>();
316 const object::COFFObjectFile &InputFile::obj() const {
318 return *PdbOrObj.get<object::COFFObjectFile *>();
361 return PdbOrObj.is<object::COFFObjectFile *>();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DThreading.inc63 // Construct the attributes object.
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp28 return "-dealloc sent to non-exclusively owned object";
30 return "freeing non-exclusively owned object";
34 return "Method should return an owned object";
38 return "Leak of returned object";
46 return "Reference-counted object is used after it is released";
48 return "Incorrect decrement of the reference count of an object that is "
51 return "-dealloc sent to object that may be referenced elsewhere";
53 return "'free' called on an object that may be referenced elsewhere";
102 // Determine if the object's reference count was pushed to zero.
134 os << " The object no
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp1 //===- ELF.cpp - ELF object file implementation ---------------------------===//
14 using namespace object;
22 StringRef llvm::object::getELFRelocationTypeName(uint32_t Machine,
156 uint32_t llvm::object::getELFRelativeRelocationType(uint32_t Machine) {
200 StringRef llvm::object::getELFSectionTypeName(uint32_t Machine, unsigned Type) {
295 // a single bitmap can encode up to 31 relocations in a 32-bit object, and
296 // 63 relocations in a 64-bit object.
586 template class llvm::object::ELFFile<ELF32LE>;
587 template class llvm::object::ELFFile<ELF32BE>;
588 template class llvm::object
[all...]
/freebsd-11-stable/usr.bin/rpcgen/
H A Drpc_cout.c321 char *object; local
334 object = xmalloc(strlen(def->def_name) +
337 s_print(object, vecformat, def->def_name,
340 s_print(object, format, def->def_name,
344 cs->array_max, object, cs->name);
345 free(object);
353 object = xmalloc(strlen(def->def_name) +
356 s_print(object, vecformat, def->def_name,
359 s_print(object, format, def->def_name,
364 dflt->array_max, object, dfl
[all...]

Completed in 214 milliseconds

1234567891011>>