Searched refs:prefsPrivate (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCPUnlock.c46 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
49 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
56 ok = _SCHelperExec(prefsPrivate->helper_port,
69 prefsPrivate->locked = FALSE;
75 if (prefsPrivate->helper_port != MACH_PORT_NULL) {
76 _SCHelperClose(&prefsPrivate->helper_port);
93 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
98 (void) _SC_cfstring_to_cstring(prefsPrivate->name, str, sizeof(str), kCFStringEncodingUTF8);
100 (void) _SC_cfstring_to_cstring(prefsPrivate->prefsID, str, sizeof(str), kCFStringEncodingUTF8);
109 prefsPrivate
124 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
[all...]
H A DSCPOpen.c69 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)cf; local
74 CFStringAppendFormat(result, NULL, CFSTR("name = %@"), prefsPrivate->name);
75 CFStringAppendFormat(result, NULL, CFSTR(", id = %@"), prefsPrivate->prefsID);
77 prefsPrivate->newPath ? prefsPrivate->newPath : prefsPrivate->path);
78 if (prefsPrivate->accessed) {
81 if (prefsPrivate->changed) {
84 if (prefsPrivate->locked) {
87 if (prefsPrivate
99 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)cf; local
168 SCPreferencesPrivateRef prefsPrivate; local
227 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
313 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
395 SCPreferencesPrivateRef prefsPrivate; local
497 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
624 SCPreferencesPrivateRef prefsPrivate; local
660 SCPreferencesPrivateRef prefsPrivate; local
763 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
822 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
853 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
893 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
966 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
1095 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
1123 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
[all...]
H A DSCPAdd.c41 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
51 if (CFDictionaryContainsKey(prefsPrivate->prefs, key)) {
56 CFDictionaryAddValue(prefsPrivate->prefs, key, value);
57 prefsPrivate->changed = TRUE;
H A DSCPApply.c44 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
47 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
54 ok = _SCHelperExec(prefsPrivate->helper_port,
72 if (prefsPrivate->helper_port != MACH_PORT_NULL) {
73 _SCHelperClose(&prefsPrivate->helper_port);
90 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
103 wasLocked = prefsPrivate->locked;
111 if (prefsPrivate->authorizationData != NULL) {
117 if (prefsPrivate->session == NULL) {
120 ok = SCDynamicStoreNotifyValue(prefsPrivate
[all...]
H A DSCPRemove.c41 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
51 CFDictionaryRemoveAllValues(prefsPrivate->prefs);
52 prefsPrivate->changed = TRUE;
60 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
70 if (!CFDictionaryContainsKey(prefsPrivate->prefs, key)) {
75 CFDictionaryRemoveValue(prefsPrivate->prefs, key);
76 prefsPrivate->changed = TRUE;
H A DSCPLock.c56 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
60 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
70 ok = _SCHelperExec(prefsPrivate->helper_port,
72 prefsPrivate->signature,
83 prefsPrivate->locked = TRUE;
89 if (prefsPrivate->helper_port != MACH_PORT_NULL) {
90 _SCHelperClose(&prefsPrivate->helper_port);
199 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
204 (void) _SC_cfstring_to_cstring(prefsPrivate->name, str, sizeof(str), kCFStringEncodingUTF8);
206 (void) _SC_cfstring_to_cstring(prefsPrivate
227 has_O_EXLOCK(SCPreferencesPrivateRef prefsPrivate) argument
284 lockWithSCDynamicStore(SCPreferencesPrivateRef prefsPrivate, Boolean wait) argument
361 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
[all...]
H A DSCPSet.c41 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
51 CFDictionarySetValue(prefsPrivate->prefs, key, value);
52 prefsPrivate->changed = TRUE;
H A DSCPCommit.c49 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
53 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
59 if (prefsPrivate->changed) {
60 ok = _SCSerialize(prefsPrivate->prefs, &data, NULL, NULL);
68 prefsPrivate->newPath ? prefsPrivate->newPath : prefsPrivate->path);
77 ok = _SCHelperExec(prefsPrivate->helper_port,
91 if (prefsPrivate->changed) {
92 if (prefsPrivate
143 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
[all...]
H A DSCPList.c43 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
56 prefsCnt = CFDictionaryGetCount(prefsPrivate->prefs);
59 CFDictionaryGetKeysAndValues(prefsPrivate->prefs, prefsKeys, NULL);
H A DSCPGet.c45 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
56 value = CFDictionaryGetValue(prefsPrivate->prefs, key);
H A DSCPreferencesKeychainPrivate.c596 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
600 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
613 ok = _SCHelperExec(prefsPrivate->helper_port,
632 if (prefsPrivate->helper_port != MACH_PORT_NULL) {
633 _SCHelperClose(&prefsPrivate->helper_port);
655 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
668 if (prefsPrivate->authorizationData != NULL) {
698 // SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs;
711 // if (prefsPrivate->authorizationData != NULL) {
741 SCPreferencesPrivateRef prefsPrivate local
800 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
849 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
986 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
[all...]
H A DSCP.c118 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
128 return prefsPrivate->signature;
H A DSCPPath.c100 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
104 *entity = prefsPrivate->prefs;
199 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
203 if (prefsPrivate->prefs != NULL) {
204 CFRelease(prefsPrivate->prefs);
208 prefsPrivate->prefs = CFDictionaryCreateMutable(NULL,
213 prefsPrivate->prefs = CFDictionaryCreateMutableCopy(NULL, 0, entity);
216 prefsPrivate->changed = TRUE;
H A DSCNetworkConnectionPrivate.c81 SCUserPreferencesPrivateRef prefsPrivate = (SCUserPreferencesPrivateRef)cf; local
85 CFStringAppendFormat(result, NULL, CFSTR("service = %@"), prefsPrivate->serviceID);
86 CFStringAppendFormat(result, NULL, CFSTR(", id = %@"), prefsPrivate->prefsID);
96 SCUserPreferencesPrivateRef prefsPrivate = (SCUserPreferencesPrivateRef)cf; local
100 CFRelease(prefsPrivate->prefsID);
101 CFRelease(prefsPrivate->serviceID);
126 SCUserPreferencesPrivateRef prefsPrivate = (SCUserPreferencesPrivateRef)cf; local
128 return CFHash(prefsPrivate->prefsID);
145 SCUserPreferencesPrivateRef prefsPrivate; local
153 prefsPrivate
[all...]
H A DSCNetworkInterface.c4955 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
4959 if (prefsPrivate->helper_port == MACH_PORT_NULL) {
4975 ok = _SCHelperExec(prefsPrivate->helper_port,
4994 if (prefsPrivate->helper_port != MACH_PORT_NULL) {
4995 _SCHelperClose(&prefsPrivate->helper_port);
5027 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
5029 if (prefsPrivate->authorizationData != NULL) {
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/helper/
H A DSCHelper_server.c237 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)sessionPrivate->prefs; local
239 if (prefsPrivate->name != NULL) {
240 caller = _SC_cfstring_to_cstring(prefsPrivate->name,
246 path = (prefsPrivate->newPath != NULL) ? prefsPrivate->newPath : prefsPrivate->path;
372 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)sessionPrivate->prefs; local
378 prefsPrivate->name,
379 prefsPrivate->newPath ? prefsPrivate
585 SCPreferencesPrivateRef prefsPrivate; local
1096 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
1175 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
1420 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
1433 SCPreferencesPrivateRef prefsPrivate; local
1497 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)sessionPrivate->prefs; local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.cpp4712 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
4713 if (prefsPrivate) {
4714 hr = prefsPrivate->localStorageDatabasePath(&str);
4882 if (prefsPrivate) {
4883 hr = prefsPrivate->authorAndUserStylesEnabled(&enabled);
4889 hr = prefsPrivate->inApplicationChromeMode(&enabled);
4894 hr = prefsPrivate->offlineWebApplicationCacheEnabled(&enabled);
4900 hr = prefsPrivate->databasesEnabled(&enabled);
4906 hr = prefsPrivate->localStorageEnabled(&enabled);
4911 hr = prefsPrivate
[all...]
/macosx-10.9.5/configd-596.15/scutil.tproj/
H A Dnet.c978 SCPreferencesPrivateRef prefsPrivate = (SCPreferencesPrivateRef)prefs; local
980 if (prefsPrivate->prefs != NULL) {
995 xmlData = CFPropertyListCreateData(NULL, prefsPrivate->prefs, kCFPropertyListXMLFormat_v1_0, 0, NULL);

Completed in 127 milliseconds