Searched refs:owner (Results 101 - 125 of 792) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DWriteBarrier.h74 void set(VM&, const JSCell* owner, T* value);
83 void setMayBeNull(VM&, const JSCell* owner, T* value);
87 void setEarlyValue(VM&, const JSCell* owner, T* value);
139 void set(VM&, const JSCell* owner, JSValue);
186 WriteBarrier(VM& vm, const JSCell* owner, T* value) argument
188 this->set(vm, owner, value);
198 WriteBarrier(VM& vm, const JSCell* owner, T* value, MayBeNullTag) argument
200 this->setMayBeNull(vm, owner, value);
212 WriteBarrier(VM& vm, const JSCell* owner, JSValue value) argument
214 this->set(vm, owner, valu
[all...]
/macosx-10.10/postfix-255/postfix/src/local/
H A Dalias.c29 /* to \fIowner-name\fR, and the owner delivery attribute is
112 char *owner; local
117 const char *owner_rhs; /* owner alias, RHS */
164 * those of who owns the alias, i.e. the database owner. With aliases
167 * we must use the rights of the include file owner, otherwise the
168 * include file owner could take control of the default account.
171 * With aliases that have an owner- alias, the latter is used to set the
172 * sender and owner attributes. Otherwise, the owner attribute is reset
207 * the alias database owner
[all...]
H A Ddeliver_attr.c67 attrp->owner = 0;
92 msg_info("owner: %s", attrp->owner ? attrp->owner : "null");
/macosx-10.10/swig-12/Lib/php/
H A Ddirector.swg107 mutable ownership_map owner;
113 for (ownership_map::iterator i = owner.begin(); i != owner.end(); i++) {
114 owner.erase(i);
139 owner[vptr] = new GCItem_T<Type>(vptr);
/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSManagedValue.mm181 + (JSManagedValue *)managedValueWithValue:(JSValue *)value andOwner:(id)owner
184 [value.context.virtualMachine addManagedReference:managedValue withOwner:owner];
228 for (id owner in [copy keyEnumerator]) {
229 size_t count = reinterpret_cast<size_t>(NSMapGet(m_owners, owner));
231 [virtualMachine removeManagedReference:self withOwner:owner];
241 - (void)didAddOwner:(id)owner
243 size_t count = reinterpret_cast<size_t>(NSMapGet(m_owners, owner));
244 NSMapInsert(m_owners, owner, reinterpret_cast<void*>(count + 1));
247 - (void)didRemoveOwner:(id)owner
249 size_t count = reinterpret_cast<size_t>(NSMapGet(m_owners, owner));
[all...]
H A DJSManagedValue.h67 + (JSManagedValue *)managedValueWithValue:(JSValue *)value andOwner:(id)owner NS_AVAILABLE(10_10, 8_0);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dcspclient.cpp154 void RccBearer::owner(const CSSM_ACL_ENTRY_PROTOTYPE *owner) argument
156 if (owner) {
157 mWorkInput = *owner;
158 this->owner(mWorkInput);
160 this->owner((AclEntryInput*)NULL);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dcspclient.cpp154 void RccBearer::owner(const CSSM_ACL_ENTRY_PROTOTYPE *owner) argument
156 if (owner) {
157 mWorkInput = *owner;
158 this->owner(mWorkInput);
160 this->owner((AclEntryInput*)NULL);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOCommandGate.cpp185 VM_KERNEL_UNSLIDE(inAction), (uintptr_t) owner);
190 res = (*inAction)(owner, arg0, arg1, arg2, arg3);
194 VM_KERNEL_UNSLIDE(inAction), (uintptr_t) owner);
223 VM_KERNEL_UNSLIDE(inAction), (uintptr_t) owner);
227 res = (*inAction)(owner, arg0, arg1, arg2, arg3);
231 VM_KERNEL_UNSLIDE(inAction), (uintptr_t) owner);
/macosx-10.10/IOUSBMassStorageClass-370.0.4/
H A DIOUFIStorageServices.cpp69 IOUFIStorageServices * owner; member in struct:BlockServicesClientData
285 IOUFIStorageServices * owner; local
295 owner = servicesData->owner;
297 STATUS_LOG ( ( 5, "%s[%p]:: AsyncReadWriteComplete; command status %x", owner->getName(), owner, status ) );
305 STATUS_LOG ( (5, "%s[%p]:: AsyncReadWriteComplete; retry command", owner->getName(), owner ) );
309 requestStatus = owner->fProvider->AsyncReadWrite (
332 owner
[all...]
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dlocaldatabase.cpp34 #include <security_cdsa_utilities/acl_any.h> // for default owner ACLs
151 const AccessCredentials *cred, const AclEntryPrototype *owner,
164 newKey = makeKey(key, attrs & LocalKey::managedAttributes, owner);
168 const AccessCredentials *cred, const AclEntryPrototype *owner,
187 (pubAttrs & CSSM_KEYATTR_PUBLIC_KEY_ENCRYPT) ? owner : NULL);
188 privateKey = makeKey(privKey, privAttrs & LocalKey::managedAttributes, owner);
216 const AccessCredentials *cred, const AclEntryPrototype *owner,
232 if (owner) {
233 ownerInput.proto() = *owner;
234 unwrap.owner(ownerInpu
150 generateKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, uint32 usage, uint32 attrs, RefPointer<Key> &newKey) argument
167 generateKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, uint32 pubUsage, uint32 pubAttrs, uint32 privUsage, uint32 privAttrs, RefPointer<Key> &publicKey, RefPointer<Key> &privateKey) argument
215 unwrapKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, Key *wrappingKey, Key *publicKey, CSSM_KEYUSE usage, CSSM_KEYATTR_FLAGS attrs, const CssmKey wrappedKey, RefPointer<Key> &unwrappedKey, CssmData &descriptiveData) argument
247 deriveKey(const Context &context, Key *key, const AccessCredentials *cred, const AclEntryPrototype *owner, CssmData *param, uint32 usage, uint32 attrs, RefPointer<Key> &derivedKey) argument
[all...]
H A Dtokencache.h104 void makedir(const char *path, int flags, mode_t mode, Owner owner);
105 void makedir(const string &path, int flags, mode_t mode, Owner owner) argument
106 { return makedir(path.c_str(), flags, mode, owner); }
H A Dlocalkey.cpp82 void LocalKey::setOwner(const AclEntryPrototype *owner) argument
84 // establish initial ACL; reinterpret empty (null-list) owner as NULL for resilence's sake
85 if (owner && !owner->subject().empty())
86 acl().cssmSetInitial(*owner); // specified
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSStyleSheet.cpp164 Document* owner = ownerDocument(); local
165 if (!owner)
168 if (mutationType == RuleInsertion && !contentsWereClonedForMutation && !owner->styleSheetCollection().activeStyleSheetsContains(this)) {
170 if (StyleResolver* resolver = owner->styleResolverIfExists())
174 owner->scheduleOptimizedStyleSheetUpdate();
178 owner->styleResolverChanged(DeferRecalcStyle);
183 Document* owner = ownerDocument(); local
184 if (!owner)
186 owner->styleResolverChanged(DeferRecalcStyle);
191 Document* owner local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/ftp/
H A Dftp_geturl.tcl112 foreach {mode dummy owner group size month day yrtime name} $item break
119 set info [list owner $owner group $group size $size date $date]
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIODMAEventSource.h46 typedef void (*Action)(OSObject *owner, IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount, AbsoluteTime timeStamp);
54 static IODMAEventSource *dmaEventSource(OSObject *owner,
82 virtual bool init(OSObject *owner,
H A DIOEventSource.h80 checkForWork() is the key method in this class. It is called by some work-loop when convienient and is expected to evaluate its internal state and determine if an event has occurred since the last call. In the case of an event having occurred then the instance defined target(owner)/action will be called. The action is stored as an ordinary C function pointer but the first parameter is always the owner. This means that a C++ member function can be used as an action function though this depends on the ABI.
82 Although the eventChainNext variable contains a reference to the next event source in the chain this reference is not retained. The list 'owner' i.e. the client that creates the event, not the work-loop, is expected to retain the source.
98 @param owner
99 Target of the function, can be used as a refcon. The owner is set
103 typedef void (*Action)(OSObject *owner, ...);
114 /*! @var owner The owner object called when an event has been delivered. */
115 OSObject *owner; member in class:IOEventSource
148 @param owner
[all...]
H A DIOTimerEventSource.h104 @param owner Owning target object. Note by a startling coincidence the first parameter in a C callout is currently used to define the target of a C++ member function.
106 typedef void (*Action)(OSObject *owner, IOTimerEventSource *sender);
110 @param owner
113 timerEventSource(OSObject *owner, Action action = 0);
116 @abstract Initializes the timer with an owner, and a handler to call when the timeout expires.
117 @param owner
119 virtual bool init(OSObject *owner, Action action = 0);
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigDirectoryIterator.h41 virtual IOReturn init(IOConfigDirectory *owner, UInt32 testVal, UInt32 testMask);
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDUserClient.h46 IOHIDSystem *owner; member in class:IOHIDUserClient
79 IOHIDSystem *owner; member in class:IOHIDParamUserClient
105 IOHIDSystem * owner; member in class:IOHIDStackShotUserClient
131 IOHIDSystem * owner; member in class:IOHIDEventSystemUserClient
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DClosureCallStubRoutine.h39 const MacroAssemblerCodeRef&, VM&, const JSCell* owner,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DUtilities.cpp96 CFTypeRef DebugRetain(const void* owner, CFTypeRef type) argument
101 fprintf(stderr, "Object %p was retained by object %p, count = %ld\n", type, owner, CFGetRetainCount(type));
109 void DebugRelease(const void* owner, CFTypeRef type) argument
113 fprintf(stderr, "Object %p was released by object %p, count = %ld\n", type, owner, CFGetRetainCount(type) - 1);
/macosx-10.10/apr-32/apr/apr/locks/beos/
H A Dthread_mutex.c89 if (mutex->nested && mutex->owner == me) {
102 mutex->owner = me;
117 if (mutex->nested && mutex->owner == find_thread(NULL)) {
130 mutex->owner = -1;
/macosx-10.10/postfix-255/postfix/src/util/
H A Ddict_static.c67 dict->owner.status = DICT_OWNER_TRUSTED;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSPreferences.h70 - (void) addPreferenceNamed:(NSString *) name owner:(id) owner;
75 - (void) showPreferencesPanelForOwner:(id) owner;
76 - (int) showModalPreferencesPanelForOwner:(id) owner;

Completed in 161 milliseconds

1234567891011>>