Searched refs:owner (Results 1 - 25 of 792) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSManagedValueInternal.h35 - (void)didAddOwner:(id)owner;
36 - (void)didRemoveOwner:(id)owner;
H A DJSVirtualMachine.h69 @param object The object that the owner points to.
70 @param owner The object that owns the pointed to object.
72 - (void)addManagedReference:(id)object withOwner:(id)owner;
80 @param owner The former owner.
82 - (void)removeManagedReference:(id)object withOwner:(id)owner;
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dchown.c39 chown(const char *path, uid_t owner, gid_t group) argument
H A Dfchown.c39 fchown(int fd, uid_t owner, gid_t group) argument
/macosx-10.10/apr-32/apr/apr/include/arch/os2/
H A Dapr_arch_proc_mutex.h26 TID owner; member in struct:apr_proc_mutex_t
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dnsap-ptr_23.h29 dns_name_t owner; member in struct:dns_rdata_in_nsap_ptr
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWQEventSource.cpp57 bool IOFWQEventSource::init( IOFireWireController* owner )
59 fQueue = &owner->getPendingQ();
60 return IOEventSource::init(owner);
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DCopyWriteBarrier.h41 CopyWriteBarrier(VM& vm, const JSCell* owner, T& value) argument
43 this->set(vm, owner, &value);
46 CopyWriteBarrier(VM& vm, const JSCell* owner, T* value) argument
48 this->set(vm, owner, value);
71 void set(VM& vm, const JSCell* owner, T* value) argument
74 vm.heap.writeBarrier(owner);
H A DCopiedBlockInlines.h36 inline bool CopiedBlock::shouldReportLiveBytes(SpinLockHolder&, JSCell* owner) argument
38 // We want to add to live bytes if the owner isn't part of the remembered set or
43 return !Heap::isRemembered(owner) || !m_isOld;
46 inline void CopiedBlock::reportLiveBytes(SpinLockHolder&, JSCell* owner, CopyToken token, unsigned bytes) argument
65 m_workList = adoptPtr(new CopyWorkList(Heap::heap(owner)->blockAllocator()));
67 m_workList->append(CopyWorklistItem(owner, token));
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DRegExpCachedResult.cpp42 RegExpMatchesArray* RegExpCachedResult::lastResult(ExecState* exec, JSObject* owner) argument
45 m_reifiedInput.set(exec->vm(), owner, m_lastInput.get());
46 m_reifiedResult.set(exec->vm(), owner, RegExpMatchesArray::create(exec, m_lastInput.get(), m_lastRegExp.get(), m_result));
52 void RegExpCachedResult::setInput(ExecState* exec, JSObject* owner, JSString* input) argument
55 lastResult(exec, owner);
57 m_reifiedInput.set(exec->vm(), owner, input);
H A DRegExpCachedResult.h47 RegExpCachedResult(VM& vm, JSObject* owner, RegExp* emptyRegExp) argument
50 m_lastInput.set(vm, owner, jsEmptyString(&vm));
51 m_lastRegExp.set(vm, owner, emptyRegExp);
54 ALWAYS_INLINE void record(VM& vm, JSObject* owner, RegExp* regExp, JSString* input, MatchResult result) argument
56 m_lastRegExp.set(vm, owner, regExp);
57 m_lastInput.set(vm, owner, input);
61 RegExpMatchesArray* lastResult(ExecState*, JSObject* owner);
62 void setInput(ExecState*, JSObject* owner, JSString*);
H A DWriteBarrierInlines.h35 inline void WriteBarrierBase<T>::set(VM& vm, const JSCell* owner, T* value) argument
40 setEarlyValue(vm, owner, value);
44 inline void WriteBarrierBase<T>::setMayBeNull(VM& vm, const JSCell* owner, T* value) argument
48 setEarlyValue(vm, owner, value);
52 inline void WriteBarrierBase<T>::setEarlyValue(VM& vm, const JSCell* owner, T* value) argument
55 vm.heap.writeBarrier(owner, this->m_cell);
58 inline void WriteBarrierBase<Unknown>::set(VM& vm, const JSCell* owner, JSValue value) argument
62 vm.heap.writeBarrier(owner, value);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DGraphicsLayerCARemote.cpp46 PassRefPtr<PlatformCALayer> GraphicsLayerCARemote::createPlatformCALayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* owner) argument
48 return PlatformCALayerRemote::create(layerType, owner, m_context);
51 PassRefPtr<PlatformCALayer> GraphicsLayerCARemote::createPlatformCALayer(PlatformLayer* platformLayer, PlatformCALayerClient* owner) argument
53 return PlatformCALayerRemote::create(platformLayer, owner, m_context);
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_mutex_unlock.c87 if (pthread_equal(pthread_self(), mutex->owner))
89 mutex->owner = (pthread_t) -1;
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dfchownat.c48 #define AT_FUNC_POST_FILE_PARAM_DECLS , uid_t owner, gid_t group, int flag
49 #define AT_FUNC_POST_FILE_ARGS , owner, group
/macosx-10.10/postfix-255/postfix/src/global/
H A Dcfg_parser.h28 DICT_OWNER owner; member in struct:CFG_PARSER
38 #define cfg_get_owner(cfg) ((cfg)->owner)
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/legacy/
H A Dlchown.c45 lchown(const char *path, uid_t owner, gid_t group) argument
47 int ret = __lchown(path, owner, group);
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/old/toasters/
H A DOutlet.tcl49 puts $fout " Customer: $owner"
56 exec mail $owner < /tmp/bill
63 set owner [$outlet info public owner -value]
64 if {[string match $customer $owner]} {
77 public owner {}
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGDesiredWriteBarriers.h50 DesiredWriteBarrier(Type, CodeBlock*, unsigned index, JSCell* owner);
51 DesiredWriteBarrier(Type, CodeBlock*, InlineCallFrame*, JSCell* owner);
72 DesiredWriteBarrier& add(DesiredWriteBarrier::Type type, CodeBlock* codeBlock, unsigned index, JSCell* owner) argument
74 m_barriers.append(DesiredWriteBarrier(type, codeBlock, index, owner));
77 DesiredWriteBarrier& add(DesiredWriteBarrier::Type type, CodeBlock* codeBlock, InlineCallFrame* inlineCallFrame, JSCell* owner) argument
79 m_barriers.append(DesiredWriteBarrier(type, codeBlock, inlineCallFrame, owner));
91 inline void initializeLazyWriteBarrierForInlineCallFrameExecutable(DesiredWriteBarriers& barriers, WriteBarrier<ScriptExecutable>& barrier, CodeBlock* codeBlock, InlineCallFrame* inlineCallFrame, JSCell* owner, ScriptExecutable* value) argument
93 DesiredWriteBarrier& desiredBarrier = barriers.add(DesiredWriteBarrier::InlineCallFrameExecutableType, codeBlock, inlineCallFrame, owner);
97 inline void initializeLazyWriteBarrierForConstant(DesiredWriteBarriers& barriers, WriteBarrier<Unknown>& barrier, CodeBlock* codeBlock, unsigned index, JSCell* owner, JSValue value) argument
99 DesiredWriteBarrier& desiredBarrier = barriers.add(DesiredWriteBarrier::ConstantType, codeBlock, index, owner);
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkBlink.c30 WidgetCore *owner; /* Widget that currently has cursor */ member in struct:__anon13479
59 cm->owner = 0;
76 if (cm->owner->flags & CURSOR_ON) {
77 cm->owner->flags &= ~CURSOR_ON;
80 cm->owner->flags |= CURSOR_ON;
84 TtkRedisplayWidget(cm->owner);
96 if (cm->owner == corePtr) {
97 cm->owner = NULL;
110 if (cm->owner == corePtr)
112 if (cm->owner)
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DPolymorphicAccessStructureList.h58 void set(VM& vm, JSCell* owner, PassRefPtr<JITStubRoutine> _stubRoutine, Structure* _base, bool _isDirect) argument
61 base.set(vm, owner, _base);
66 void set(VM& vm, JSCell* owner, PassRefPtr<JITStubRoutine> _stubRoutine, Structure* _base, StructureChain* _chain, bool _isDirect, unsigned _count) argument
69 base.set(vm, owner, _base);
70 chain.set(vm, owner, _chain);
80 PolymorphicAccessStructureList(VM& vm, JSCell* owner, PassRefPtr<JITStubRoutine> stubRoutine, Structure* firstBase, bool isDirect) argument
82 list[0].set(vm, owner, stubRoutine, firstBase, isDirect);
85 PolymorphicAccessStructureList(VM& vm, JSCell* owner, PassRefPtr<JITStubRoutine> stubRoutine, Structure* firstBase, StructureChain* firstChain, bool isDirect, unsigned count) argument
87 list[0].set(vm, owner, stubRoutine, firstBase, firstChain, isDirect, count);
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DClosureCallStubRoutine.cpp41 const MacroAssemblerCodeRef& code, VM& vm, const JSCell* owner,
44 , m_structure(vm, owner, structure)
45 , m_executable(vm, owner, executable)
40 ClosureCallStubRoutine( const MacroAssemblerCodeRef& code, VM& vm, const JSCell* owner, Structure* structure, ExecutableBase* executable, const CodeOrigin& codeOrigin) argument
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dtempdatabase.h52 const AclEntryPrototype *owner);
56 const AclEntryPrototype *owner, uint32 usage,
62 const AclEntryPrototype *owner, uint32 usage,
/macosx-10.10/emacs-93/emacs/lib-src/
H A Drcs-checkin53 # expr pattern to extract owner from ls -l output
108 owner=-w`expr " $ls_l" : " $ls_owner_pattern"` || owner=
109 echo "Formerly ${oldfile}" | ci -d -l -q $owner "$file" || exit
115 owner=-w`expr " $ls_l" : " $ls_owner_pattern"` || owner=
116 ci -d -q -u $owner -m"entered into RCS" "$file" || exit
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDUserClient.cpp65 owner = (IOHIDSystem *) _owner;
72 if (owner) {
73 owner->evClose();
74 owner->serverConnect = 0;
75 detach(owner);
76 owner = NULL;
84 return( owner );
94 if (!owner)
97 owner->setEventPort(port);
116 if (owner)
[all...]

Completed in 208 milliseconds

1234567891011>>