Home
last modified time | relevance | path

Searched full:object (Results 1 – 25 of 4940) sorted by relevance

12345678910>>...198

/freebsd-13-stable/sys/vm/
HDvm_object.c64 * Virtual memory object module.
112 static int vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
117 static void vm_object_backing_remove(vm_object_t object);
122 * page of memory exists within exactly one object.
124 * An object is only deallocated when all "references"
126 * region of an object should be writeable.
128 * Associated with each object is a list of all resident
129 * memory pages belonging to that object; this list is
130 * maintained by the "vm_page" module, and locked by the object's
133 * Each object also records a "pager" routine which is
[all …]
HDvm_object.h64 * Virtual memory object module definitions.
83 * vm_object_t Virtual memory object.
88 * (o) per-object lock
105 vm_pindex_t size; /* Object size */
116 blockcount_t busy; /* (a) object is busy, disallow page busy. */
118 struct vm_object *backing_object; /* object that I'm a shadow of */
119 vm_ooffset_t backing_object_offset;/* Offset in backing object */
194 #define OBJ_PG_DTOR 0x0080 /* dont reset object, leave that for dtor */
196 #define OBJ_SWAP 0x0200 /* object swaps */
197 #define OBJ_SPLIT 0x0400 /* object is being split */
[all …]
HDdevice_pager.c67 static void dev_pager_free_page(vm_object_t object, vm_page_t m);
68 static int dev_pager_populate(vm_object_t object, vm_pindex_t pidx,
99 static int old_dev_pager_fault(vm_object_t object, vm_ooffset_t offset,
119 vm_object_t object; in cdev_pager_lookup() local
123 object = vm_pager_object_lookup(&dev_pager_object_list, handle); in cdev_pager_lookup()
124 if (object != NULL && object->un_pager.devp.dev == NULL) { in cdev_pager_lookup()
125 msleep(&object->un_pager.devp.dev, &dev_pager_mtx, in cdev_pager_lookup()
127 vm_object_deallocate(object); in cdev_pager_lookup()
131 return (object); in cdev_pager_lookup()
139 vm_object_t object; in cdev_pager_allocate() local
[all …]
HDphys_pager.c53 static int default_phys_pager_getpages(vm_object_t object, vm_page_t *m,
55 static int default_phys_pager_populate(vm_object_t object, vm_pindex_t pidx,
57 static boolean_t default_phys_pager_haspage(vm_object_t object,
79 vm_object_t object, object1; in phys_pager_allocate() local
98 object = vm_pager_object_lookup(&phys_pager_object_list, handle); in phys_pager_allocate()
99 if (object == NULL) { in phys_pager_allocate()
101 * Allocate object and associate it with the pager. in phys_pager_allocate()
106 object = vm_pager_object_lookup(&phys_pager_object_list, in phys_pager_allocate()
108 if (object != NULL) { in phys_pager_allocate()
111 * allocating object. in phys_pager_allocate()
[all …]
HDvnode_pager.c91 static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
92 static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
150 /* Create the VM system backing object for this vnode */
154 vm_object_t object; in vnode_create_vobject() local
162 object = vp->v_object; in vnode_create_vobject()
163 if (object != NULL) in vnode_create_vobject()
176 object = vnode_pager_alloc(vp, size, 0, 0, td->td_ucred); in vnode_create_vobject()
179 * that the object is associated with the vp. We still have in vnode_create_vobject()
183 VM_OBJECT_RLOCK(object); in vnode_create_vobject()
184 last = refcount_release(&object->ref_count); in vnode_create_vobject()
[all …]
/freebsd-13-stable/tests/sys/cddl/zfs/tests/acl/cifs/
HDcifs_attr_003_pos.ksh111 typeset object=$1
116 if [[ -f $object ]]; then
121 $CHMOD S+c${attr} $object
133 typeset object=$1
139 if [[ -f $object ]]; then
147 $CHMOD S-c${attr} $object
159 typeset object=$1
162 if [[ -z $object || -z $attr ]]; then
163 log_fail "Object($object), Attr($attr) not defined."
178 $func $object
[all …]
HDcifs_attr_001_pos.ksh86 typeset object=$1
91 if [[ -z $object ]]; then
92 log_fail "Object not defined."
96 $RUNWATTR -u $user "$CHMOD S+c${attr} $object"
99 $CHMOD S+c${attr} $object
115 typeset object=$1
120 if [[ -z $object ]]; then
121 log_fail "Object not defined."
125 $RUNWATTR -u $user "$CHMOD S-c${attr} $object"
128 $CHMOD S-c${attr} $object
[all …]
/freebsd-13-stable/sys/sys/
HDstdatomic.h237 #define atomic_compare_exchange_strong_explicit(object, expected, \ argument
239 __c11_atomic_compare_exchange_strong(object, expected, desired, \
241 #define atomic_compare_exchange_weak_explicit(object, expected, \ argument
243 __c11_atomic_compare_exchange_weak(object, expected, desired, \
245 #define atomic_exchange_explicit(object, desired, order) \ argument
246 __c11_atomic_exchange(object, desired, order)
247 #define atomic_fetch_add_explicit(object, operand, order) \ argument
248 __c11_atomic_fetch_add(object, operand, order)
249 #define atomic_fetch_and_explicit(object, operand, order) \ argument
250 __c11_atomic_fetch_and(object, operand, order)
[all …]
/freebsd-13-stable/crypto/heimdal/lib/asn1/
HDrfc2459.asn114 id-pkcs-1 OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
16 id-pkcs1-rsaEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 1 }
17 id-pkcs1-md2WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 2 }
18 id-pkcs1-md5WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 4 }
19 id-pkcs1-sha1WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 5 }
20 id-pkcs1-sha256WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 11 }
21 id-pkcs1-sha384WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 12 }
22 id-pkcs1-sha512WithRSAEncryption OBJECT IDENTIFIER ::= { id-pkcs-1 13 }
24 id-heim-rsa-pkcs1-x509 OBJECT IDENTIFIER ::= { 1 2 752 43 16 1 }
26 id-pkcs-2 OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
[all …]
/freebsd-13-stable/usr.sbin/bsnmpd/modules/snmp_wlan/
HDBEGEMOT-WIRELESS-MIB.txt32 MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
240 begemotWlanNotifications OBJECT IDENTIFIER ::= { begemotWlan 0 }
242 begemotWlanInterface OBJECT IDENTIFIER ::= { begemotWlan 1 }
244 begemotWlanScanning OBJECT IDENTIFIER ::= { begemotWlan 2 }
246 begemotWlanStatistics OBJECT IDENTIFIER ::= { begemotWlan 3 }
248 begemotWlanWep OBJECT IDENTIFIER ::= { begemotWlan 4 }
250 begemotWlanMACAccessControl OBJECT IDENTIFIER ::= { begemotWlan 5 }
252 begemotWlanMeshRouting OBJECT IDENTIFIER ::= { begemotWlan 6 }
255 -- begemotWlanMultimedia OBJECT IDENTIFIER ::= { begemotWlan 7 }
261 wlanInterfaceTable OBJECT-TYPE
[all …]
/freebsd-13-stable/contrib/libucl/include/
HDucl.h118 …* by loosing floating point. Every object may be converted to a string by #ucl_object_tostring_for…
122 UCL_OBJECT = 0, /**< UCL object - key/value pairs */
147 * that the input memory is not freed if an object is in use. Moreover, if you want to use
181 * Basic flags for an object (can use up to 12 bits as higher 4 bits are used
185 UCL_OBJECT_ALLOCATED_KEY = (1 << 0), /**< An object has key allocated internally */
186 UCL_OBJECT_ALLOCATED_VALUE = (1 << 1), /**< An object has a string value allocated internally */
187 UCL_OBJECT_NEED_KEY_ESCAPE = (1 << 2), /**< The key of an object need to be escaped on output */
188 UCL_OBJECT_EPHEMERAL = (1 << 3), /**< Temporary object that does not need to be freed really */
190 UCL_OBJECT_MULTIVALUE = (1 << 5), /**< Object is a key with multiple values */
191 UCL_OBJECT_INHERITED = (1 << 6), /**< Object has been inherited from another */
[all …]
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
HDutdelete.c3 * Module Name: utdelete - object deletion and reference count utilities
166 ACPI_OPERAND_OBJECT *Object);
170 ACPI_OPERAND_OBJECT *Object,
178 * PARAMETERS: Object - Object to be deleted
182 * DESCRIPTION: Low level object deletion, after reference counts have been
189 ACPI_OPERAND_OBJECT *Object) in AcpiUtDeleteInternalObj() argument
199 ACPI_FUNCTION_TRACE_PTR (UtDeleteInternalObj, Object); in AcpiUtDeleteInternalObj()
202 if (!Object) in AcpiUtDeleteInternalObj()
208 * Must delete or free any pointers within the object that are not in AcpiUtDeleteInternalObj()
211 switch (Object->Common.Type) in AcpiUtDeleteInternalObj()
[all …]
/freebsd-13-stable/usr.sbin/bsnmpd/modules/snmp_pf/
HDBEGEMOT-PF-MIB.txt13 MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32,
51 begemotPfObjects OBJECT IDENTIFIER ::= { begemotPf 1 }
55 pfStatus OBJECT IDENTIFIER ::= { begemotPfObjects 1 }
56 pfCounter OBJECT IDENTIFIER ::= { begemotPfObjects 2 }
57 pfStateTable OBJECT IDENTIFIER ::= { begemotPfObjects 3 }
58 pfSrcNodes OBJECT IDENTIFIER ::= { begemotPfObjects 4 }
59 pfLimits OBJECT IDENTIFIER ::= { begemotPfObjects 5 }
60 pfTimeouts OBJECT IDENTIFIER ::= { begemotPfObjects 6 }
61 pfLogInterface OBJECT IDENTIFIER ::= { begemotPfObjects 7 }
62 pfInterfaces OBJECT IDENTIFIER ::= { begemotPfObjects 8 }
[all …]
/freebsd-13-stable/lib/libvgl/
HDsimple.c50 VGLSetXY(VGLBitmap *object, int x, int y, u_long color) in VGLSetXY() argument
55 if (x>=0 && x<object->VXsize && y>=0 && y<object->VYsize) { in VGLSetXY()
56 if (object == VGLDisplay) { in VGLSetXY()
59 } else if (object->Type != MEMBUF) in VGLSetXY()
64 offset = (y * object->VXsize + x) * object->PixelBytes; in VGLSetXY()
65 switch (object->Type) { in VGLSetXY()
77 switch (object->PixelBytes) { in VGLSetXY()
79 memcpy(&object->Bitmap[offset], &color, 1); in VGLSetXY()
82 memcpy(&object->Bitmap[offset], &color, 2); in VGLSetXY()
85 memcpy(&object->Bitmap[offset], &color, 3); in VGLSetXY()
[all …]
/freebsd-13-stable/contrib/bsnmp/snmp_ntp/
HDNTP-PROXY-MIB.txt11 Integer32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32,
45 udel OBJECT IDENTIFIER
52 ntpProxyControl OBJECT IDENTIFIER
92 ntpProxyControlTable OBJECT-TYPE
100 ntpProxyControlEntry OBJECT-TYPE
114 ntpProxyServerIPAddr OBJECT-TYPE
122 ntpProxyControlStatus OBJECT-TYPE
134 ntpProxyServerSystemTable OBJECT-TYPE
142 ntpProxyServerSystemEntry OBJECT-TYPE
169 ntpProxyServerSysLeap OBJECT-TYPE
[all …]
HDNTP-MIB.txt8 Integer32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32,
41 udel OBJECT IDENTIFIER
47 ntpSystem OBJECT IDENTIFIER
50 ntpPeers OBJECT IDENTIFIER
53 ntpFilter OBJECT IDENTIFIER
81 ntpSysLeap OBJECT-TYPE
90 ntpSysStratum OBJECT-TYPE
102 ntpSysPrecision OBJECT-TYPE
112 ntpSysRootDelay OBJECT-TYPE
122 ntpSysRootDispersion OBJECT-TYPE
[all …]
/freebsd-13-stable/crypto/openssl/include/openssl/
HDec.h56 * \return EC_METHOD object
61 * \return EC_METHOD object
66 * \return EC_METHOD object
72 * \return EC_METHOD object
77 * \return EC_METHOD object
82 * \return EC_METHOD object
93 * \return EC_METHOD object
103 /** Creates a new EC_GROUP object
105 * \return newly created EC_GROUP object or NULL in case of an error.
109 /** Frees a EC_GROUP object
[all …]
/freebsd-13-stable/tests/sys/mac/bsdextended/
HDugidfw_test.c78 /* Variations on subject and object uids. */
79 "subject uid root object uid root mode n",
80 "subject uid root object uid daemon mode n",
81 "subject uid daemon object uid root mode n",
82 "subject uid daemon object uid daemon mode n",
84 "subject uid root object uid root mode a",
85 "subject uid root object uid root mode r",
86 "subject uid root object uid root mode s",
87 "subject uid root object uid root mode w",
88 "subject uid root object uid root mode x",
[all …]
/freebsd-13-stable/share/man/man3/
HDATOMIC_VAR_INIT.350 .Fn atomic_init "_Atomic(T) *object" "T value"
52 .Fn atomic_load "_Atomic(T) *object"
54 .Fn atomic_load_explicit "_Atomic(T) *object" "memory_order order"
56 .Fn atomic_store "_Atomic(T) *object" "T desired"
58 .Fn atomic_store_explicit "_Atomic(T) *object" "T desired" "memory_order order"
60 .Fn atomic_exchange "_Atomic(T) *object" "T desired"
62 .Fn atomic_exchange_explicit "_Atomic(T) *object" "T desired" "memory_order order"
64 .Fn atomic_compare_exchange_strong "_Atomic(T) *object" "T *expected" "T desired"
66 .Fn atomic_compare_exchange_strong_explicit "_Atomic(T) *object" "T *expected" "T desired" "memory_…
68 .Fn atomic_compare_exchange_weak "_Atomic(T) *object" "T *expected" "T desired"
[all …]
/freebsd-13-stable/sys/dev/isci/scil/
HDscif_sas_remote_device_states.c71 * to start/stop it's remote device object.
84 * @param[in] object This parameter specifies the base object for which
86 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
92 SCI_BASE_OBJECT_T *object in scif_sas_remote_device_initial_state_enter() argument
95 SCIF_SAS_REMOTE_DEVICE_T * fw_device = (SCIF_SAS_REMOTE_DEVICE_T *)object; in scif_sas_remote_device_initial_state_enter()
117 * @param[in] object This parameter specifies the base object for which
119 * SCIF_SAS_REMOTE_DEVICE object in the method implementation.
125 SCI_BASE_OBJECT_T *object in scif_sas_remote_device_stopped_state_enter() argument
128 SCIF_SAS_REMOTE_DEVICE_T * fw_device = (SCIF_SAS_REMOTE_DEVICE_T *)object; in scif_sas_remote_device_stopped_state_enter()
160 * @param[in] object This parameter specifies the base object for which
[all …]
HDscif_sas_controller_states.c77 * @param[in] object This parameter specifies the base object for which
79 * SCIF_SAS_CONTROLLER object in the method implementation.
85 SCI_BASE_OBJECT_T * object in scif_sas_controller_initial_state_enter() argument
88 SCIF_SAS_CONTROLLER_T * fw_controller = (SCIF_SAS_CONTROLLER_T *)object; in scif_sas_controller_initial_state_enter()
101 * @param[in] object This parameter specifies the base object for which
103 * SCIF_SAS_CONTROLLER object in the method implementation.
109 SCI_BASE_OBJECT_T * object in scif_sas_controller_reset_state_enter() argument
112 SCIF_SAS_CONTROLLER_T * fw_controller = (SCIF_SAS_CONTROLLER_T *)object; in scif_sas_controller_reset_state_enter()
177 * @param[in] object This parameter specifies the base object for which
179 * SCIF_SAS_CONTROLLER object in the method implementation.
[all …]
/freebsd-13-stable/contrib/kyua/utils/format/
HDcontainers.ipp37 /// Injects the object into a stream.
39 /// \param output The stream into which to inject the object.
40 /// \param object The object to format.
45 std::operator<<(std::ostream& output, const std::map< K, V >& object)
49 for (typename std::map< K, V >::const_iterator iter = object.begin();
50 iter != object.end(); ++iter, ++counter) {
60 /// Injects the object into a stream.
62 /// \param output The stream into which to inject the object.
63 /// \param object The object to format.
68 std::operator<<(std::ostream& output, const std::pair< T1, T2 >& object)
[all …]
/freebsd-13-stable/crypto/heimdal/doc/doxyout/hx509/man/man3/
HDhx509_ca.392 Sign a to-be-signed certificate object with a issuer certificate.
94 …aller needs to at least have called the following functions on the to-be-signed certificate object:
103 When done the to-be-signed certificate object should be freed with \fBhx509_ca_tbs_free()\fP.
111 \fItbs\fP object to be signed.
113 \fIsigner\fP the CA certificate object to sign with (need private key).
132 \fItbs\fP object to be signed.
147 Add CRL distribution point URI to the to-be-signed certificate object.
153 \fItbs\fP object to be signed.
170 An an extended key usage to the to-be-signed certificate object. Duplicates will detected and not a…
176 \fItbs\fP object to be signed.
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
HDMachOReader.h15 #include "llvm/Object/MachO.h"
23 // raw binaries and regular MachO object files.
27 virtual Expected<std::unique_ptr<Object>> create() const = 0;
31 const object::MachOObjectFile &MachOObj;
33 void readHeader(Object &O) const;
34 Error readLoadCommands(Object &O) const;
35 void readSymbolTable(Object &O) const;
36 void setSymbolInRelocationInfo(Object &O) const;
37 void readRebaseInfo(Object &O) const;
38 void readBindInfo(Object &O) const;
[all …]
/freebsd-13-stable/lib/libc/sys/
HDshm_open.234 .Nd "shared memory object operations"
62 shared memory object named
84 then a new shared memory object named
88 the shared memory object is created with mode
95 flags are specified and a shared memory object named
104 If an existing shared memory object is opened with
109 then the shared memory object will be truncated to a size of zero.
110 The size of the object can be adjusted via
129 In this case, an anonymous, unnamed shared memory object is created.
130 Since the object has no name,
[all …]

12345678910>>...198