Searched refs:ref (Results 1 - 25 of 1036) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DASTRefCount.hpp46 ASTRef* ref; member in class:antlr::ASTRefCount
50 : ref(p ? ASTRef::getRef(p) : 0)
54 : ref(other.ref ? other.ref->increment() : 0)
59 if (ref && ref->decrement())
60 delete ref;
66 if (ref && ref
[all...]
H A DTokenRefCount.hpp46 TokenRef* ref; member in class:antlr::TokenRefCount
50 : ref(p ? TokenRef::getRef(p) : 0)
54 : ref(other.ref ? other.ref->increment() : 0)
59 if (ref && ref->decrement())
60 delete ref;
66 if (ref && ref
[all...]
H A DRefCount.hpp30 }* ref; member in class:antlr::RefCount
34 : ref(p ? new Ref(p) : 0)
38 : ref(other.ref ? other.ref->increment() : 0)
43 if (ref && ref->decrement())
44 delete ref;
48 Ref* tmp = other.ref ? other.ref
[all...]
/macosx-10.10/ppp-786.1.1/SampleCode/ClientAPI/
H A DPPPLib.h43 int PPPInit (int *ref);
45 int PPPDispose (int ref);
47 int PPPConnect (int ref,
50 int PPPDisconnect (int ref,
53 int PPPGetOption (int ref,
59 int PPPSetOption (int ref,
65 int PPPStatus (int ref,
69 int PPPEnableEvents (int ref,
/macosx-10.10/libxml2-26/libxml2/
H A Dtriop.h20 * The ref pointer is an opaque type and should remain as such.
90 TRIO_CONST char *trio_get_format TRIO_PROTO((trio_pointer_t ref));
91 trio_pointer_t trio_get_argument TRIO_PROTO((trio_pointer_t ref));
94 int trio_get_width TRIO_PROTO((trio_pointer_t ref));
95 void trio_set_width TRIO_PROTO((trio_pointer_t ref, int width));
96 int trio_get_precision TRIO_PROTO((trio_pointer_t ref));
97 void trio_set_precision TRIO_PROTO((trio_pointer_t ref, int precision));
98 int trio_get_base TRIO_PROTO((trio_pointer_t ref));
99 void trio_set_base TRIO_PROTO((trio_pointer_t ref, int base));
100 int trio_get_padding TRIO_PROTO((trio_pointer_t ref));
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtriop.h20 * The ref pointer is an opaque type and should remain as such.
90 TRIO_CONST char *trio_get_format TRIO_PROTO((trio_pointer_t ref));
91 trio_pointer_t trio_get_argument TRIO_PROTO((trio_pointer_t ref));
94 int trio_get_width TRIO_PROTO((trio_pointer_t ref));
95 void trio_set_width TRIO_PROTO((trio_pointer_t ref, int width));
96 int trio_get_precision TRIO_PROTO((trio_pointer_t ref));
97 void trio_set_precision TRIO_PROTO((trio_pointer_t ref, int precision));
98 int trio_get_base TRIO_PROTO((trio_pointer_t ref));
99 void trio_set_base TRIO_PROTO((trio_pointer_t ref, int base));
100 int trio_get_padding TRIO_PROTO((trio_pointer_t ref));
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Durl.cpp58 ref = NULL;
63 ref = CFURLCreateWithBytes(NULL, (const UInt8 *)s, strlen(s), kCFStringEncodingUTF8, NULL);
64 if (!ref)
70 ref = CFURLCreateWithBytes(NULL, (const UInt8 *)s, strlen(s), kCFStringEncodingUTF8, base.ref);
71 if (!ref)
77 if (ref)
78 CFRelease(ref);
87 return mkstr(CFURLGetString(ref));
92 return mkstr(CFURLCopyScheme(ref));
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Durl.cpp58 ref = NULL;
63 ref = CFURLCreateWithBytes(NULL, (const UInt8 *)s, strlen(s), kCFStringEncodingUTF8, NULL);
64 if (!ref)
70 ref = CFURLCreateWithBytes(NULL, (const UInt8 *)s, strlen(s), kCFStringEncodingUTF8, base.ref);
71 if (!ref)
77 if (ref)
78 CFRelease(ref);
87 return mkstr(CFURLGetString(ref));
92 return mkstr(CFURLCopyScheme(ref));
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Drefcount.c28 isc_refcount_init(isc_refcount_t *ref, unsigned int n) { argument
29 REQUIRE(ref != NULL);
31 ref->refs = n;
33 return (isc_mutex_init(&ref->lock));
/macosx-10.10/ntp-92/lib/isc/
H A Drefcount.c28 isc_refcount_init(isc_refcount_t *ref, unsigned int n) { argument
29 REQUIRE(ref != NULL);
31 ref->refs = n;
33 return (isc_mutex_init(&ref->lock));
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/PyObjCTest/
H A Dtest_scpreferencessetspecific.py6 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
7 self.failUnlessIsInstance(ref, SCPreferencesRef)
9 v = SCPreferencesSetComputerName(ref, "my host", kCFStringEncodingUTF8)
12 v = SCPreferencesSetLocalHostName(ref, "my.host.private")
H A Dtest_scpreferencespath.py8 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
9 self.failUnlessIsInstance(ref, SCPreferencesRef)
11 r = SCPreferencesAddValue(ref, "use",
16 v = SCPreferencesPathCreateUniqueChild(ref, "/")
19 v = SCPreferencesPathGetValue(ref, "/use")
22 v = SCPreferencesPathSetValue(ref, "/use", dict(python2=True, python3=True))
25 v = SCPreferencesPathSetLink(ref, "/use_python", "/use")
28 v = SCPreferencesPathGetLink(ref, "/use_python")
31 v = SCPreferencesPathRemoveValue(ref, "/use")
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-SystemConfiguration/PyObjCTest/
H A Dtest_scpreferencessetspecific.py6 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
7 self.assertIsInstance(ref, SCPreferencesRef)
9 v = SCPreferencesSetComputerName(ref, "my host", kCFStringEncodingUTF8)
12 v = SCPreferencesSetLocalHostName(ref, "my.host.private")
H A Dtest_scpreferencespath.py8 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
9 self.assertIsInstance(ref, SCPreferencesRef)
11 r = SCPreferencesAddValue(ref, "use",
16 v = SCPreferencesPathCreateUniqueChild(ref, "/")
19 v = SCPreferencesPathGetValue(ref, "/use")
22 v = SCPreferencesPathSetValue(ref, "/use", dict(python2=True, python3=True))
25 v = SCPreferencesPathSetLink(ref, "/use_python", "/use")
28 v = SCPreferencesPathGetLink(ref, "/use_python")
31 v = SCPreferencesPathRemoveValue(ref, "/use")
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-SystemConfiguration-2.5.1/PyObjCTest/
H A Dtest_scpreferencessetspecific.py6 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
7 self.assertIsInstance(ref, SCPreferencesRef)
9 v = SCPreferencesSetComputerName(ref, "my host", kCFStringEncodingUTF8)
12 v = SCPreferencesSetLocalHostName(ref, "my.host.private")
H A Dtest_scpreferencespath.py13 ref = SCPreferencesCreate(None, "pyobjc.test", "pyobjc.test")
14 self.assertIsInstance(ref, SCPreferencesRef)
16 r = SCPreferencesAddValue(ref, "use",
21 v = SCPreferencesPathCreateUniqueChild(ref, "/")
24 v = SCPreferencesPathGetValue(ref, "/use")
27 v = SCPreferencesPathSetValue(ref, "/use", dict(python2=True, python3=True))
30 v = SCPreferencesPathSetLink(ref, "/use_python", "/use")
33 v = SCPreferencesPathGetLink(ref, "/use_python")
36 v = SCPreferencesPathRemoveValue(ref, "/use")
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-AddressBook/PyObjCTest/
H A Dtest_abpeoplepickerc.py26 ref = ABPickerCreate()
28 self.assertIsInstance(ref, (ABPickerRef, objc.lookUpClass('ABPeoplePickerCAdapter')))
31 self.assertIsInstance(ref, ABPickerRef)
33 ABPickerSetFrame(ref, ((90, 100), (200, 400)))
34 r = ABPickerGetFrame(ref, None)
39 r = ABPickerIsVisible(ref)
44 ABPickerSetVisibility(ref, True)
46 r = ABPickerIsVisible(ref)
49 ABPickerSetVisibility(ref, False)
51 r = ABPickerIsVisible(ref)
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-AddressBook-2.5.1/PyObjCTest/
H A Dtest_abpeoplepickerc.py36 ref = ABPickerCreate()
38 self.assertIsInstance(ref, (ABPickerRef, objc.lookUpClass('ABPeoplePickerCAdapter')))
41 self.assertIsInstance(ref, ABPickerRef)
43 ABPickerSetFrame(ref, ((90, 100), (200, 400)))
44 r = ABPickerGetFrame(ref, None)
49 r = ABPickerIsVisible(ref)
54 ABPickerSetVisibility(ref, True)
56 r = ABPickerIsVisible(ref)
59 ABPickerSetVisibility(ref, False)
61 r = ABPickerIsVisible(ref)
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-AddressBook/PyObjCTest/
H A Dtest_abpeoplepickerc.py26 ref = ABPickerCreate()
27 self.failUnlessIsInstance(ref, ABPickerRef)
29 ABPickerSetFrame(ref, ((90, 100), (200, 400)))
30 r = ABPickerGetFrame(ref, None)
35 r = ABPickerIsVisible(ref)
40 ABPickerSetVisibility(ref, True)
42 r = ABPickerIsVisible(ref)
45 ABPickerSetVisibility(ref, False)
47 r = ABPickerIsVisible(ref)
50 r = ABPickerGetAttributes(ref)
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DsslDigests.c50 const HashReference *ref,
55 if ((err = SSLAllocBuffer(newState, ref->contextSize)))
57 return ref->clone(state, newState);
64 ReadyHash(const HashReference *ref, SSLBuffer *state) argument
67 if ((err = SSLAllocBuffer(state, ref->contextSize)))
69 return ref->init(state);
76 OSStatus CloseHash(const HashReference *ref, SSLBuffer *state) argument
83 serr = ref->close(state);
49 CloneHashState( const HashReference *ref, const SSLBuffer *state, SSLBuffer *newState) argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DsslDigests.c50 const HashReference *ref,
55 if ((err = SSLAllocBuffer(newState, ref->contextSize)))
57 return ref->clone(state, newState);
64 ReadyHash(const HashReference *ref, SSLBuffer *state) argument
67 if ((err = SSLAllocBuffer(state, ref->contextSize)))
69 return ref->init(state);
76 OSStatus CloseHash(const HashReference *ref, SSLBuffer *state) argument
83 serr = ref->close(state);
49 CloneHashState( const HashReference *ref, const SSLBuffer *state, SSLBuffer *newState) argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DsslDigests.c50 const HashReference *ref,
55 if ((err = SSLAllocBuffer(newState, ref->contextSize)))
57 return ref->clone(state, newState);
64 ReadyHash(const HashReference *ref, SSLBuffer *state) argument
67 if ((err = SSLAllocBuffer(state, ref->contextSize)))
69 return ref->init(state);
76 OSStatus CloseHash(const HashReference *ref, SSLBuffer *state) argument
83 serr = ref->close(state);
49 CloneHashState( const HashReference *ref, const SSLBuffer *state, SSLBuffer *newState) argument
/macosx-10.10/ruby-106/ruby/lib/drb/
H A Deq.rb5 (@ref == other.__drbref) && (@uri == other.__drburi)
9 [@uri, @ref].hash
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DASTRefCount.cpp17 if (p && !p->ref)
18 p->ref = this;
30 if (pp->ref)
31 return pp->ref->increment();
H A DTokenRefCount.cpp17 if (p && !p->ref)
18 p->ref = this;
30 if (pp->ref)
31 return pp->ref->increment();

Completed in 216 milliseconds

1234567891011>>