Searched refs:holder (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10.1/ruby-106/ruby/test/drb/
H A Dut_timerholder.rb7 holder = TimerHolder.new(timeout)
8 holder.keeper_sleep = keeper_sleep if keeper_sleep
9 key = holder.add(self)
11 assert_equal(holder.peek(key), self)
12 holder.delete(key)
13 assert(!holder.include?(key))
14 key = holder.add(self)
16 assert_equal(holder.fetch(key), nil)
17 key = holder.add(self)
18 assert_equal(holder
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dsnprintf.c248 char *holder; member in struct:DATA
332 (p)->holder = (p)->base + (p)->counter; /* in case reallocated */ \
335 *(p)->holder++ = (c); \
653 /* for %d and friends, it puts in holder
1184 p->holder = p->base = string;
1202 double d; /* temporary holder */
1273 *data->holder = '\0';
1564 *data->holder = '\0'; /* the end ye ! */
1779 char holder[100]; local
1790 si = snprintf(holder,
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSCTestRunnerUtils.cpp38 JSLockHolder holder(exec);
45 JSLockHolder holder(exec);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DStructureStubClearingWatchpoint.h51 WatchpointsOnStructureStubInfo& holder)
52 : m_holder(holder)
57 WatchpointsOnStructureStubInfo& holder,
59 : m_holder(holder)
67 WatchpointsOnStructureStubInfo& holder,
50 StructureStubClearingWatchpoint( WatchpointsOnStructureStubInfo& holder) argument
56 StructureStubClearingWatchpoint( WatchpointsOnStructureStubInfo& holder, PassOwnPtr<StructureStubClearingWatchpoint> next) argument
H A DStructureStubClearingWatchpoint.cpp40 WatchpointsOnStructureStubInfo& holder,
43 head = adoptPtr(new StructureStubClearingWatchpoint(holder, head.release()));
39 push( WatchpointsOnStructureStubInfo& holder, OwnPtr<StructureStubClearingWatchpoint>& head) argument
H A DLazyOperandValueProfile.cpp65 const ConcurrentJITLocker&, CompressedLazyOperandValueProfileHolder& holder)
69 if (!holder.m_data)
72 LazyOperandValueProfile::List& data = *holder.m_data;
64 initialize( const ConcurrentJITLocker&, CompressedLazyOperandValueProfileHolder& holder) argument
H A DLazyOperandValueProfile.h174 const ConcurrentJITLocker&, CompressedLazyOperandValueProfileHolder& holder);
/macosx-10.10.1/bash-94.1.2/bash-3.2/po/
H A DRules-builtins8 --copyright-holder='$(COPYRIGHT_HOLDER)' \
/macosx-10.10.1/ruby-106/ruby/lib/drb/
H A Dtimeridconv.rb85 @holder = TimerHolder2.new(timeout)
90 @holder.fetch(ref)
96 return @holder.add(obj)
/macosx-10.10.1/Librpcsvc-24/
H A Dklm_prot.x66 int pid; /* holder of the lock */
73 * lock holder identifier
77 int svid; /* holder of the lock (pid) */
95 struct klm_holder holder;
H A Dnlm_prot.x43 struct nlm_holder holder;
191 struct nlm4_holder holder;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DCoreFoundationBasics.h51 void SetHolder(CoreFoundationHolder* holder) {mHolder = holder;} argument
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dinstall-sh10 This script a place holder for AC_PROG_INSTALL in configure.in.
/macosx-10.10.1/NFS-82/rpc.lockd/
H A Dlock_proc.c579 struct nlm4_holder *holder; local
585 holder = testlock(&arg4, arg->exclusive, 0);
594 if (holder == NULL) {
598 memcpy(&res.stat.nlm_testrply_u.holder, holder,
600 res.stat.nlm_testrply_u.holder.l_offset = holder->l_offset;
601 res.stat.nlm_testrply_u.holder.l_len = holder->l_len;
617 struct nlm4_holder *holder; local
1142 struct nlm4_holder *holder; local
1194 struct nlm4_holder *holder; local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerDatabase.cpp141 TCMalloc_SpinLockHolder holder(&registrationLock);
148 TCMalloc_SpinLockHolder holder(&registrationLock);
166 TCMalloc_SpinLockHolder holder(&registrationLock);
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dlocks.c609 thread_t holder)
628 KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_MTX_LCK_WAIT_CODE) | DBG_FUNC_START, (int)lck, (int)holder, 0, 0, 0);
639 thread_lock(holder);
641 holder->promotions++;
642 holder->sched_flags |= TH_SFLAG_PROMOTED;
644 holder->sched_pri < priority ) {
647 holder->sched_pri, priority, holder, lck, 0);
648 set_sched_pri(holder, priority);
650 thread_unlock(holder);
607 lck_mtx_lock_wait( lck_mtx_t *lck, thread_t holder) argument
758 lck_mtx_unlock_wakeup( lck_mtx_t *lck, thread_t holder) argument
[all...]
H A Dlocks.h367 thread_t holder);
374 thread_t holder);
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dlocks_i386.c1355 * and then we can return as the exclusive holder of this lock
1874 * the holder is running on another processor. We spin for up to a maximum
1880 * returns 2 if we didn't spin due to the holder not running
1886 thread_t holder; local
1910 if ((holder = (thread_t) mutex->lck_mtx_owner) != NULL) {
1912 if ( !(holder->machine.specFlags & OnProc) ||
1913 (holder->state & TH_IDLE)) {
1969 thread_t holder; local
1996 if ( (holder = (thread_t)mutex->lck_mtx_owner) &&
1997 holder
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/lock/
H A Dlock.c320 * Change the holder of the lock described in
541 roff_t holder, sh_off; local
612 * The most common place this happens is when the holder has a
624 holder = 0;
641 if (sh_off == lp->holder) {
662 } else if (__lock_is_parent(lt, lp->holder, sh_locker))
669 holder = lp->holder;
699 lock_mode) && sh_off != lp->holder)
742 lp->holder
[all...]
/macosx-10.10.1/emacs-93/emacs/nt/
H A Dpreprep.c638 void * holder; local
667 holder = malloc (len_import_relocs);
668 if (holder == 0)
670 memcpy (holder, start_block, len_import_relocs);
672 memcpy ((char *) start_block + len_remaining_relocs, holder, len_import_relocs);
673 free (holder);
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dlisp-mnt.el323 "Return the copyright holder, and a list of copyright years.
328 (let ((holder nil)
355 (setq holder (match-string-no-properties 0)))))
356 (cons holder (nreverse years)))))
561 "Copyright holder is not the Free Software Foundation")
/macosx-10.10.1/vim-55/runtime/plugin/
H A DzipPlugin.vim13 " holder be liable for any damages resulting from the use
/macosx-10.10.1/JavaScriptCore-7600.1.17/bindings/
H A DScriptValue.cpp157 JSLockHolder holder(scriptState);
/macosx-10.10.1/cups-408/cups/locale/
H A DMakefile135 --copyright-holder="Apple Inc." \
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSONObject.cpp115 StringifyResult appendStringifiedValue(StringBuilder&, JSValue, JSObject* holder, const PropertyNameForFunctionCall&);
352 Stringifier::StringifyResult Stringifier::appendStringifiedValue(StringBuilder& builder, JSValue value, JSObject* holder, const PropertyNameForFunctionCall& propertyName) argument
364 value = call(m_exec, m_replacer.get(), m_replacerCallType, m_replacerCallData, holder, args);
369 if (value.isUndefined() && !holder->inherits(JSArray::info()))
412 if (holder->inherits(JSArray::info())) {
419 // Handle cycle detection, and put the holder on the stack.
735 // The holder may be modified by the reviver function so any lookup may throw

Completed in 583 milliseconds

123