Searched refs:sharedInstance (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/CloudKeychainProxy/
H A DCKDUserInteraction.m35 static CKDUserInteraction *sharedInstance = nil;
50 CKDUserInteraction *sharedInstance = [CKDUserInteraction sharedInstance];
54 secdebug(XPROXYUISCOPE, "sharedInstance: %@, rlsr: %@", sharedInstance, sharedInstance.runLoopSourceRef);
57 if (sharedInstance.runLoopSourceRef)
58 CFRunLoopRemoveSource(CFRunLoopGetMain(), sharedInstance.runLoopSourceRef, kCFRunLoopDefaultMode);
60 if (completion) // sharedInstance.completion
63 completion(userResponses, responseFlags); // sharedInstance
[all...]
H A DCKDUserInteraction.h41 + (CKDUserInteraction *) sharedInstance; variable
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/PassengerPane/test/
H A Dshared_passenger_behaviour_test.rb6 attr_accessor :sharedInstance
14 OSX::SecurityHelper.sharedInstance.expects(:executeCommand_withArgs).with('/some/command', ['arg1', 'arg2']).returns(1)
20 PrefPanePassenger.sharedInstance = pref_stub
26 OSX::SecurityHelper.sharedInstance.stubs(:executeCommand_withArgs).returns(0)
H A Dtest_helper.rb26 def self.sharedInstance singleton method in class:OSX
27 @sharedInstance ||= new
H A Dpref_pane_passenger_test.rb53 it "should register itself as the sharedInstance" do
55 PrefPanePassenger.sharedInstance.should.be.instance_of PrefPanePassenger
601 OSX::SecurityHelper.sharedInstance.should.be.authorized
605 OSX::SecurityHelper.sharedInstance.should.not.be.authorized
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/PassengerPane/
H A Dshared_passenger_behaviour.rb5 if OSX::SecurityHelper.sharedInstance.executeCommand_withArgs(command, args) == 0
12 :beginSheetModalForWindow, PrefPanePassenger.sharedInstance.mainView.window,
H A DSecurityHelper.h8 + sharedInstance;
H A DPassengerPref.rb21 attr_accessor :sharedInstance
34 self.class.sharedInstance = self
152 OSX::SecurityHelper.sharedInstance.authorizationRef = @authorizationView.authorization.authorizationRef
157 OSX::SecurityHelper.sharedInstance.deauthorize
H A DPassengerApplication.rb164 PrefPanePassenger.sharedInstance.applicationMarkedDirty self
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/ios/
H A DAudioSessionIOS.mm74 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(interruption:) name:AVAudioSessionInterruptionNotification object:[AVAudioSession sharedInstance]];
151 [[AVAudioSession sharedInstance] setCategory:categoryString error:&error];
157 NSString* categoryString = [[AVAudioSession sharedInstance] category];
189 return [[AVAudioSession sharedInstance] sampleRate];
194 return [[AVAudioSession sharedInstance] outputNumberOfChannels];
200 [[AVAudioSession sharedInstance] setActive:active error:&error];
206 return [[AVAudioSession sharedInstance] preferredIOBufferDuration] * sampleRate();
213 [[AVAudioSession sharedInstance] setPreferredIOBufferDuration:duration error:&error];
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugIn.mm101 static WKWebProcessPlugInController *sharedInstance;
105 ASSERT_WITH_MESSAGE(sharedInstance, "+[WKWebProcessPlugIn _shared] called without first initializing it.");
106 return sharedInstance;
119 ASSERT_WITH_MESSAGE(!sharedInstance, "WKWebProcessPlugInController initialized multiple times.");
120 sharedInstance = self;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/curl/
H A DResourceHandleCurl.cpp109 ResourceHandleManager::sharedInstance()->add(this);
115 ResourceHandleManager::sharedInstance()->cancel(this);
176 ResourceHandleManager* manager = ResourceHandleManager::sharedInstance();
H A DResourceHandleManager.h56 static ResourceHandleManager* sharedInstance();
H A DCookieJarCurl.cpp229 const char* cookieJarFileName = ResourceHandleManager::sharedInstance()->getCookieJarFileName();
230 CURLSH* curlsh = ResourceHandleManager::sharedInstance()->getCurlShareHandle();
256 CURLSH* curlsh = ResourceHandleManager::sharedInstance()->getCurlShareHandle();
H A DResourceHandleManager.cpp182 ResourceHandleManager* ResourceHandleManager::sharedInstance() function in class:WebCore::ResourceHandleManager
184 static ResourceHandleManager* sharedInstance = 0; local
185 if (!sharedInstance)
186 sharedInstance = new ResourceHandleManager();
187 return sharedInstance;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDefaultPolicyDelegate.h33 static DefaultPolicyDelegate* sharedInstance();
H A DDefaultDownloadDelegate.h38 static DefaultDownloadDelegate* sharedInstance();
H A DDefaultPolicyDelegate.cpp56 DefaultPolicyDelegate* DefaultPolicyDelegate::sharedInstance() function in class:DefaultPolicyDelegate
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/Regressions/
H A DCKDKeyValueStore.m277 CKDKeyValueStoreCollection *mall = [CKDKeyValueStoreCollection sharedInstance];
288 + (id)sharedInstance
298 CKDKeyValueStoreCollection *mall = [CKDKeyValueStoreCollection sharedInstance];
321 CKDKeyValueStoreCollection *mall = [CKDKeyValueStoreCollection sharedInstance];
333 CKDKeyValueStoreCollection *mall = [CKDKeyValueStoreCollection sharedInstance];
H A DCKDKeyValueStore.h70 + (id)sharedInstance; variable
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSPreferences.h102 + (id) sharedInstance; variable
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSPreferences.h102 + (id) sharedInstance; variable
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A Dtestapi.mm179 static JSVirtualMachine *sharedInstance = nil;
183 if (!sharedInstance)
184 sharedInstance = [[JSVirtualMachine alloc] init];
185 return sharedInstance;
190 sharedInstance = nil;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DVM.cpp354 VM& VM::sharedInstance() function in class:JSC::VM
367 static VM* sharedInstance; local
368 return sharedInstance;
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSContextRef.cpp120 return JSGlobalContextCreateInGroup(toRef(&VM::sharedInstance()), globalObjectClass);

Completed in 226 milliseconds

12