Searched refs:ivars (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11.0-release/sys/xen/xenbus/
H A Dxenbusb.c82 * \param ivars The instance variable block to free.
85 xenbusb_free_child_ivars(struct xenbus_device_ivars *ivars) argument
87 if (ivars->xd_otherend_watch.node != NULL) {
88 xs_unregister_watch(&ivars->xd_otherend_watch);
89 free(ivars->xd_otherend_watch.node, M_XENBUS);
90 ivars->xd_otherend_watch.node = NULL;
93 if (ivars->xd_local_watch.node != NULL) {
94 xs_unregister_watch(&ivars->xd_local_watch);
95 ivars->xd_local_watch.node = NULL;
98 if (ivars
136 struct xenbus_device_ivars *ivars; local
174 struct xenbus_device_ivars *ivars; local
209 struct xenbus_device_ivars *ivars; local
231 struct xenbus_device_ivars *ivars; local
444 struct xenbus_device_ivars *ivars; local
646 struct xenbus_device_ivars *ivars; local
781 struct xenbus_device_ivars *ivars; local
846 struct xenbus_device_ivars *ivars = device_get_ivars(child); local
859 struct xenbus_device_ivars *ivars = device_get_ivars(child); local
889 struct xenbus_device_ivars *ivars = device_get_ivars(child); local
967 struct xenbus_device_ivars *ivars; local
[all...]
H A Dxenbusb_front.c129 * a split device whose local end is represented by ivars.
135 * \param ivars Instance variables from the XenBus child device for
142 xenbusb_front_get_otherend_node(device_t dev, struct xenbus_device_ivars *ivars) argument
147 if (ivars->xd_otherend_path != NULL) {
148 free(ivars->xd_otherend_path, M_XENBUS);
149 ivars->xd_otherend_path = NULL;
152 error = xs_gather(XST_NIL, ivars->xd_node,
153 "backend-id", "%i", &ivars->xd_otherend_id,
158 ivars->xd_otherend_path = strdup(otherend_path, M_XENBUS);
159 ivars
[all...]
H A Dxenbusb_back.c180 * a split device whose local end is represented by ivars.
183 * \param ivars Instance variables from the XenBus child device for
194 xenbusb_back_get_otherend_node(device_t dev, struct xenbus_device_ivars *ivars) argument
199 if (ivars->xd_otherend_path != NULL) {
200 free(ivars->xd_otherend_path, M_XENBUS);
201 ivars->xd_otherend_path = NULL;
204 error = xs_gather(XST_NIL, ivars->xd_node,
205 "frontend-id", "%i", &ivars->xd_otherend_id,
210 ivars->xd_otherend_path = strdup(otherend_path, M_XENBUS);
211 ivars
[all...]
/freebsd-11.0-release/sys/dev/mii/
H A Dmii.c128 struct miibus_ivars *ivars; local
146 ivars = device_get_ivars(dev);
147 ifmedia_init(&mii->mii_media, IFM_IMASK, ivars->ifmedia_upd,
148 ivars->ifmedia_sts);
149 mii->mii_ifp = ivars->ifp;
188 struct miibus_ivars *ivars; local
194 ivars = device_get_ivars(dev);
197 *result = ivars->mii_flags;
232 struct miibus_ivars *ivars; local
266 ivars
365 struct miibus_ivars *ivars; local
[all...]
/freebsd-11.0-release/sys/arm/xscale/pxa/
H A Dpxa_smi.c321 struct smi_ivars *ivars; local
323 ivars = (struct smi_ivars *)malloc(
325 if (ivars == NULL)
330 free(ivars, M_PXASMI);
334 device_set_ivars(child, ivars);
335 resource_list_init(&ivars->smid_resources);
342 resource_list_add(&ivars->smid_resources, SYS_RES_MEMORY, 0,
344 ivars->smid_mem = (bus_addr_t)start;
351 resource_list_add(&ivars->smid_resources, SYS_RES_IRQ, 0, start,
/freebsd-11.0-release/sys/riscv/htif/
H A Dhtif.c206 struct htif_dev_ivars *ivars; local
208 ivars = device_get_ivars(child);
212 *result = ivars->index;
215 *result = (uintptr_t)ivars->id;
/freebsd-11.0-release/sys/arm/at91/
H A Dat91.c275 struct at91_ivar *ivars; local
279 ivars = device_get_ivars(child);
280 rl = &ivars->resources;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp1 //==- ObjCUnusedIVarsChecker.cpp - Check for unused ivars --------*- C++ -*-==//
12 // has any ivars that are never accessed.
114 // Iterate over the ivars.
115 for (const auto *Ivar : ID->ivars()) {
116 // Ignore ivars that...
136 // Any potentially unused ivars?
147 // We found some potentially unused ivars. Scan the entire translation unit
148 // for functions inside the @implementation that reference these ivars.
155 // Find ivars that are unused.
H A DCheckObjCDealloc.cpp88 // Does the class contain any ivars that are pointers (or id<...>)?
95 for (const auto *Ivar : ID->ivars()) {
170 // Scan for missing and extra releases of ivars used by implementations
182 if (!T->isObjCObjectPointerType()) // Skip non-pointer ivars
189 // ivars cannot be set via read-only properties, so we'll skip them
/freebsd-11.0-release/sys/arm/cavium/cns11xx/
H A Decona.c520 struct econa_ivar *ivars; local
524 ivars = device_get_ivars(child);
525 rl = &ivars->resources;
/freebsd-11.0-release/sys/dev/fdc/
H A Dfdc.c1842 struct fdc_ivars *ivars = device_get_ivars(child); local
1846 *result = ivars->fdunit;
1849 *result = ivars->fdtype;
1860 struct fdc_ivars *ivars = device_get_ivars(child); local
1864 ivars->fdunit = value;
1867 ivars->fdtype = value;
/freebsd-11.0-release/sys/dev/e1000/
H A Dif_em.h407 u32 ivars; member in struct:adapter
H A Dif_em.c1468 E1000_WRITE_REG(&adapter->hw, E1000_IVAR, adapter->ivars);
2665 adapter->ivars |= (8 | rxr->msix) << (i * 4);
2710 adapter->ivars |= (8 | txr->msix) << (8 + (i * 4));
2737 adapter->ivars |= (8 | vector) << 16;
2738 adapter->ivars |= 0x80000000;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp1090 for (const auto *I : OID->ivars()) {
1144 for (const auto *I : OID->ivars()) {
1200 for (const auto *I : PID->ivars())
H A DDeclObjC.cpp1525 for (auto *IV : ImplDecl->ivars()) {
1539 // Order synthesized ivars by their size.
1657 // but unfortunately we sometimes place ivars into non-class extension
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp1994 ObjCIvarDecl **ivars, unsigned numIvars,
2007 ivars[i]->setLexicalDeclContext(ImpDecl);
2008 IDecl->makeDeclVisibleInContext(ivars[i]);
2009 ImpDecl->addDecl(ivars[i]);
2018 assert(ivars && "missing @implementation ivars");
2023 ObjCIvarDecl* ImplIvar = ivars[i];
2030 // Check class extensions (unnamed categories) for duplicate ivars.
2053 ObjCIvarDecl* ImplIvar = ivars[j++];
2082 Diag(ivars[
1993 CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, ObjCIvarDecl **ivars, unsigned numIvars, SourceLocation RBrace) argument
[all...]
H A DSemaDeclCXX.cpp13395 /// Objective-C implementation whose ivars need be initialized.
13400 SmallVector<ObjCIvarDecl*, 8> ivars; local
13401 CollectIvarsToConstructOrDestruct(OID, ivars);
13402 if (ivars.empty())
13405 for (unsigned i = 0; i < ivars.size(); i++) {
13406 FieldDecl *Field = ivars[i];
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dobjc-lang.c62 CORE_ADDR ivars; member in struct:objc_class
1774 class->ivars = read_memory_unsigned_integer (addr + 24, 4);
/freebsd-11.0-release/sys/boot/kshim/
H A Dbsd_kernel.c635 device_set_ivars(device_t dev, void *ivars) argument
637 dev->dev_aux = ivars;
H A Dbsd_kernel.h411 void device_set_ivars(device_t dev, void *ivars);
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp2510 uint64_t ivars; // const ivar_list_t * (64-bit pointer) member in struct:class_ro64_t
2523 uint32_t ivars; /* const ivar_list_t * (32-bit pointer) */ member in struct:class_ro32_t
2714 uint32_t ivars; /* struct objc_ivar_list * (32-bit pointer) */ member in struct:objc_class_t
2817 sys::swapByteOrder(cro.ivars);
2830 sys::swapByteOrder(cro.ivars);
2997 sys::swapByteOrder(objc_class.ivars);
4312 outs() << " ivars ";
4313 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, ivars), S,
4314 info, n_value, cro.ivars);
4320 if (cro.ivars !
[all...]
/freebsd-11.0-release/sys/kern/
H A Dsubr_bus.c134 void *ivars; /**< instance variables */ member in struct:device
1822 dev->ivars = NULL;
2539 * @brief Get the device's ivars field
2541 * The ivars field is used by the parent device to store per-device
2550 return (dev->ivars);
2554 * @brief Set the device's ivars field
2557 device_set_ivars(device_t dev, void * ivars) argument
2561 dev->ivars = ivars;
3329 * somewhere in the child device's ivars (se
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h883 /// IvarList - List of all ivars defined by this class; including class
891 /// \brief Indicates that the ivar cache does not yet include ivars
1127 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCInterfaceDecl
1639 /// ivars.
1665 /// NextIvar - Next Ivar in the list of ivars declared in class; class's
1950 /// class extension may have private ivars.
2039 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCCategoryDecl
2226 /// \@implementation may have private ivars.
2231 /// \brief The arguments used to initialize the ivars
2235 /// Do the ivars o
2360 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCImplementationDecl
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCMac.cpp917 /// are any weak ivars defined directly in the class. Meaningless unless
1098 /// implementation. If ForClass is true the list of class ivars
1099 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1100 /// interface ivars will be emitted. The return value has type
1321 /// implementation. If ForClass is true the list of class ivars
1322 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1323 /// interface ivars will be emitted. The return value has type
3114 /// Class implementation was compiled under MRC and has MRC weak ivars.
3144 /// Class implementation was compiled under MRC and has MRC weak ivars.
3166 /// __weak ivars
4930 SmallVector<const ObjCIvarDecl*, 32> ivars; local
[all...]
/freebsd-11.0-release/sys/sys/
H A Dbus.h585 void device_set_ivars(device_t dev, void *ivars);

Completed in 275 milliseconds

12