Searched refs:me (Results 76 - 100 of 842) sorted by relevance

1234567891011>>

/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSArray.cpp128 OSArray *me = new OSArray; local
130 if (me && !me->initWithCapacity(capacity)) {
131 me->release();
135 return me;
142 OSArray *me = new OSArray; local
144 if (me && !me->initWithObjects(objects, count, capacity)) {
145 me->release();
149 return me;
155 OSArray *me = new OSArray; local
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibCommand.cpp664 Cmd* me = (Cmd*)refcon ; local
666 me->mStatus = result ;
667 me->mBytesTransferred = (unsigned long)quads[0] ;
668 me->mAckCode = (unsigned long)quads[1];
669 me->mResponseCode = (unsigned long)quads[2];
670 me->mIsExecuting = false ;
672 if (me->mCallback)
673 (*(me->mCallback))(me->mRefCon, me
896 ReadCmd* me = new ReadCmd( userclient, device, addr, buf, size, callback, failOnReset, generation, inRefCon ) ; local
962 ReadQuadCmd* me = new ReadQuadCmd(inUserClient, device, addr, quads, numQuads, callback, failOnReset, generation, refcon) ; local
1048 ReadQuadCmd* me = (ReadQuadCmd*)refcon ; local
1110 WriteCmd* me = new WriteCmd( userclient, device, addr, buf, size, callback, failOnReset, generation, refcon ) ; local
1187 PHYCmd* me = new PHYCmd( userclient, data1, data2, callback, failOnReset, generation, refcon ); local
1309 WriteQuadCmd* me = new WriteQuadCmd( userclient, device, addr, quads, numQuads, callback, failOnReset, generation, refcon ) ; local
1437 CompareSwapCmd* me = new CompareSwapCmd( userclient, device, addr, cmpVal, newVal, quads, local
1639 CompareSwapCmd * me = reinterpret_cast<CompareSwapCmd*>(refcon) ; local
1731 AsyncStreamCmd* me = new AsyncStreamCmd( userclient, channel, sync, tag, buf, size, callback, failOnReset, generation, inRefCon ) ; local
[all...]
H A DIOFireWireLibIOCFPlugIn.cpp94 IOCFPlugIn* me = new IOCFPlugIn ; local
95 if( !me )
98 return reinterpret_cast<IOCFPlugInInterface **>( & me->GetInterface() );
H A DIOFireWireLibIRMAllocation.cpp193 IRMAllocation* me = IOFireWireIUnknown::InterfaceMap<IRMAllocation>::GetThis(refcon) ; local
194 if (me->mLostHandler)
195 me->mLostHandler(refcon,me->mUserRefCon);
242 IRMAllocationCOM* me = nil ; local
245 me = new IRMAllocationCOM( userclient, inKernIRMAllocationRef, inCallBack, inRefCon ) ;
249 return ( nil == me ) ? nil : reinterpret_cast<IUnknownVTbl**>(& me->GetInterface()) ;
H A DIOFireWireLibAsyncStreamListener.cpp285 AsyncStreamListener* me = IOFireWireIUnknown::InterfaceMap<AsyncStreamListener>::GetThis(refcon) ; local
287 if ( ! me->mListener )
289 me->ClientCommandIsComplete( (AsyncStreamListenerRef) refcon, args[0] ) ;
294 (me->mListener)(
298 me->mBuffer + (unsigned long)(args[2]), // packet
299 (void*) me->mUserRefCon) ; // refcon
306 AsyncStreamListener* me = IOFireWireIUnknown::InterfaceMap<AsyncStreamListener>::GetThis(refcon) ; local
308 if (me->mSkippedPacketHandler)
309 (me->mSkippedPacketHandler)( refcon, commandID, packetCount) ;
311 me
365 AsyncStreamListenerCOM* me = nil ; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dthreading.h144 pthread_mutex_t me; member in class:Security::Mutex
171 pthread_cond_t me; member in class:Security::Condition
215 StLock(Lock &lck) : me(lck) { (me.*_lock)(); mActive = true; }
216 StLock(Lock &lck, bool option) : me(lck), mActive(option) { }
217 ~StLock() { if (mActive) (me.*_unlock)(); }
220 void lock() { if(!mActive) { (me.*_lock)(); mActive = true; }}
221 void unlock() { if(mActive) { (me.*_unlock)(); mActive = false; }}
224 operator const Lock &() const { return me; }
227 Lock &me; member in class:Security::StLock
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dthreading.h144 pthread_mutex_t me; member in class:Security::Mutex
171 pthread_cond_t me; member in class:Security::Condition
215 StLock(Lock &lck) : me(lck) { (me.*_lock)(); mActive = true; }
216 StLock(Lock &lck, bool option) : me(lck), mActive(option) { }
217 ~StLock() { if (mActive) (me.*_unlock)(); }
220 void lock() { if(!mActive) { (me.*_lock)(); mActive = true; }}
221 void unlock() { if(mActive) { (me.*_unlock)(); mActive = false; }}
224 operator const Lock &() const { return me; }
227 Lock &me; member in class:Security::StLock
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dmentry.tcl25 set me [widget::menuentry .me]
26 set menu [menu .me.menu -tearoff 0]
32 $me configure -menu $menu
33 pack $me -fill x -expand 1 -padx 4 -pady 4
234 proc ttk::menuentry::Popdown {me x y} {
235 if {[$me instate disabled] || [set menu [$me cget -menu]] eq ""
236 || [$me identify $x $y] ne "MenuEntry.icon"} {
239 foreach {x y} [PostPosition $me
[all...]
/macosx-10.10/autofs-246/automountd/
H A Dautod_mount.c122 struct mapent *me, *mapents; local
149 for (me = mapents; me; me = me->map_next) {
151 me->map_fstype ? me->map_fstype : "",
152 me->map_mounter ? me->map_mounter : "",
154 me
[all...]
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOInterleavedMemoryDescriptor.cpp45 IOInterleavedMemoryDescriptor * me = new IOInterleavedMemoryDescriptor; local
47 if ( me && !me->initWithCapacity(
51 me->release();
52 me = 0;
55 return me;
H A DIOMultiMemoryDescriptor.cpp49 IOMultiMemoryDescriptor * me = new IOMultiMemoryDescriptor; local
51 if ( me && me->initWithDescriptors(
57 me->release();
58 me = 0;
61 return me;
H A DIOCommandGate.cpp84 IOCommandGate *me = new IOCommandGate; local
86 if (me && !me->init(inOwner, inAction)) {
87 me->release();
91 return me;
H A DIOCommandQueue.cpp114 IOCommandQueue *me = new IOCommandQueue; local
116 if (me && !me->init(inOwner, inAction, inSize)) {
117 me->free();
121 return me;
/macosx-10.10/mail_cmds-30/mail/USD.doc/
H A DMakefile7 MACROS= -me
/macosx-10.10/vim-55/runtime/syntax/
H A Dautomake.vim28 syn match automakePrimary "^[A-Za-z0-9_]\+\(_PROGRAMS\|LIBRARIES\|_LIST\|_SCRIPTS\|_DATA\|_HEADERS\|_MANS\|_TEXINFOS\|_JAVA\|_LTLIBRARIES\)\s*="me=e-1
29 syn match automakePrimary "^TESTS\s*="me=e-1
30 syn match automakeSecondary "^[A-Za-z0-9_]\+\(_SOURCES\|_LDADD\|_LIBADD\|_LDFLAGS\|_DEPENDENCIES\|_CPPFLAGS\)\s*="me=e-1
31 syn match automakeSecondary "^OMIT_DEPENDENCIES\s*="me=e-1
32 syn match automakeExtra "^EXTRA_[A-Za-z0-9_]\+\s*="me=e-1
33 syn match automakeOptions "^\(AUTOMAKE_OPTIONS\|ETAGS_ARGS\|TAGS_DEPENDENCIES\)\s*="me=e-1
34 syn match automakeClean "^\(MOSTLY\|DIST\|MAINTAINER\)\=CLEANFILES\s*="me=e-1
35 syn match automakeSubdirs "^\(DIST_\)\=SUBDIRS\s*="me=e-1
H A Dpo.vim27 syn match poHtmlNot +"<[^<]\+>"+ms=s+1,me=e-1
32 syn region poMsgCTxt matchgroup=poStatementMsgCTxt start=+^msgctxt "+rs=e-1 matchgroup=poStringCTxt end=+^msgid "+me=s-1 contains=poStringCTxt
33 syn region poMsgID matchgroup=poStatementMsgid start=+^msgid "+rs=e-1 matchgroup=poStringID end=+^msgstr\(\|\[[\]0\[]\]\) "+me=s-1 contains=poStringID,poStatementMsgidplural,poStatementMsgid
34 syn region poMsgSTR matchgroup=poStatementMsgstr start=+^msgstr\(\|\[[\]0\[]\]\) "+rs=e-1 matchgroup=poStringSTR end=+\n\n+me=s-1 contains=poStringSTR,poStatementMsgstr
55 syn region poCommentKDE start=+"_: +ms=s+1 end="\\n" end="\"\n^msgstr"me=s-1 contained
56 syn region poCommentKDEError start=+"\(\|\s\+\)_:+ms=s+1 end="\\n" end=+"\n\n+me=s-1 contained
58 syn region poPluralKDEError start=+"\(\|\s\+\)_n:+ms=s+1 end="\"\n\n"me=s-1 contained
70 syn match poKDEdesktopFile "\"\(Name\|Comment\|GenericName\|Description\|Keywords\|About\)="ms=s+1,me=e-1
73 syn match poAcceleratorId contained "[^&_~][&_~]\(\a\|\d\)[^:]"ms=s+1,me=e-1
74 syn match poAcceleratorStr contained "[^&_~][&_~]\(\a\|\d\)[^:]"ms=s+1,me
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/dtrace/
H A Dcodesign-watch.d61 DTHandle me; /* own handle, if valid */
76 rep[arg0].me = kernel[pid].rep = arg0;
85 rep[arg0].me = arg0;
95 rep[arg0].me = arg0;
107 rep[arg0].me = arg0;
119 rep[arg0].me = arg0;
143 rep[arg0].me = 0;
151 DTHandle me;
159 DTHandle me;
169 staticCode[arg0].me
[all...]
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDCEEM/Classes/
H A DAppleUSBCDCEEM.cpp101 AppleUSBCDCEEM *me = (AppleUSBCDCEEM *)dataAddr; local
107 XTRACE(me, 0, 0, "findCDCDriverEED");
114 XTRACE(me, 0, 0, "findCDCDriverEED - Couldn't create a matching dictionary");
123 XTRACE(me, 0, 0, "findCDCDriverEED - No AppleUSBCDC driver found!");
143 XTRACE(me, 0, 0, "findCDCDriverEED - CDC driver candidate");
145 if (me->fDataInterface->GetDevice() == CDCDriver->getCDCDevice())
147 XTRACE(me, 0, 0, "findCDCDriverEED - Found our CDC driver");
159 XTRACE(me, 0, 0, "findCDCDriverEED - CDC driver not found");
165 XTRACE(me, kUSBEthernetEmulationModel, dataInterfaceNum, "findCDCDriverEED - Not my interface");
169 me
332 AppleUSBCDCEEM *me = (AppleUSBCDCEEM*)obj; local
420 AppleUSBCDCEEM *me = (AppleUSBCDCEEM *)obj; local
[all...]
/macosx-10.10/ruby-106/ruby/
H A Dproc.c22 rb_method_entry_t *me; member in struct:METHOD
894 if (data->me) rb_mark_method_entry(data->me);
902 data->me->mark = 0;
903 ume->me = data->me;
942 rb_method_entry_t *me, meb; local
947 me = rb_method_entry_without_refinements(klass, id, &defined_class);
948 if (UNDEFINED_METHOD_ENTRY_P(me)) {
965 me
1699 rb_method_entry_min_max_arity(const rb_method_entry_t *me, int *max) argument
1747 rb_method_entry_arity(const rb_method_entry_t *me) argument
1806 rb_method_entry_t *me; local
1829 rb_method_entry_t *me = original_method_entry(mod, id); local
1880 rb_method_entry_location(rb_method_entry_t *me) argument
1889 rb_method_entry_t *me = original_method_entry(mod, id); local
[all...]
H A Dvm_eval.c38 const rb_method_entry_t *me, VALUE defined_class)
47 ci->me = me;
62 const rb_method_entry_t *me = ci->me; local
63 const rb_method_cfunc_t *cfunc = &me->def->body.cfunc;
97 const rb_method_entry_t *me = ci->me; local
98 const rb_method_cfunc_t *cfunc = &me->def->body.cfunc;
112 VM_ENVVAL_BLOCK_PTR(blockptr), 0, reg_cfp->sp, 1, me);
37 vm_call0(rb_thread_t* th, VALUE recv, ID id, int argc, const VALUE *argv, const rb_method_entry_t *me, VALUE defined_class) argument
243 rb_vm_call(rb_thread_t *th, VALUE recv, VALUE id, int argc, const VALUE *argv, const rb_method_entry_t *me, VALUE defined_class) argument
255 rb_method_entry_t *me; local
315 rb_method_entry_t *me = local
358 const rb_method_entry_t *me = rb_method_entry(klass, idRespond_to, &defined_class); local
382 check_funcall_callable(rb_thread_t *th, const rb_method_entry_t *me) argument
411 const rb_method_entry_t *me; local
431 const rb_method_entry_t *me; local
526 rb_method_call_status(rb_thread_t *th, const rb_method_entry_t *me, call_type scope, VALUE self) argument
1077 const rb_method_entry_t *me = th->cfp->me; local
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWDCLTranslator.cpp532 IODCLTranslator * me; local
541 me = (IODCLTranslator *)((DCLCallProc*)pDCLCommand)->procData;
542 pCurrentDCLCommand = me->fCurrentDCLCommand;
543 pDCLTransferPacket = &me->fTransfers[me->fPingCount * kNumPacketsPerPingPong];
570 me->fCurrentDCLCommand = pCurrentDCLCommand;
571 me->fPingCount++;
572 if(me->fPingCount > kNumPingPongs)
573 me->fPingCount = 0;
578 IODCLTranslator * me; local
[all...]
H A DIOFWUserPhysicalAddressSpace.cpp86 IOFWUserPhysicalAddressSpace * me = (IOFWUserPhysicalAddressSpace*)self; local
90 me->deactivate();
/macosx-10.10/IOSerialFamily-74/IOSerialFamily.kmodproj/
H A DIOSerialBSDClient.cpp1125 IOSerialBSDClient *me = sBSDGlobals.getClient(dev);
1127 if (!me || me->isInactive())
1130 me->retain();
1133 IOLockLock(me->fOpenCloseLock);
1135 int ret = me->open(dev, flags, devtype, p);
1137 IOLockUnlock(me->fOpenCloseLock);
1138 me->release();
1150 IOSerialBSDClient *me = sBSDGlobals.getClient(dev);
1152 if (!me)
[all...]
/macosx-10.10/IONetworkingFamily-101/
H A DIOMbufMemoryCursor.cpp535 IOMbufBigMemoryCursor *me = new IOMbufBigMemoryCursor; local
537 if (me && !me->initWithSpecification(&bigOutputSegment,
539 me->release();
543 return me;
579 IOMbufNaturalMemoryCursor *me = new IOMbufNaturalMemoryCursor; local
581 if (me && !me->initWithSpecification(&naturalOutputSegment,
583 me->release();
587 return me;
624 IOMbufLittleMemoryCursor *me = new IOMbufLittleMemoryCursor; local
671 IOMbufDBDMAMemoryCursor *me = new IOMbufDBDMAMemoryCursor; local
[all...]
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/
H A Dar-lib4 me=ar-lib
36 echo "$me: $1" 1>&2
105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
112 echo "$me, version $scriptversion"
236 echo "$me: creating $orig_archive"

Completed in 312 milliseconds

1234567891011>>