Searched refs:release (Results 251 - 275 of 2070) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorController.cpp92 m_agents.append(inspectorAgentPtr.release());
97 m_agents.append(pageAgentPtr.release());
101 m_agents.append(domAgentPtr.release());
108 m_agents.append(databaseAgentPtr.release());
120 m_agents.append(domStorageAgentPtr.release());
124 m_agents.append(memoryAgentPtr.release());
132 m_agents.append(resourceAgentPtr.release());
136 m_agents.append(runtimeAgentPtr.release());
140 m_agents.append(consoleAgentPtr.release());
145 m_agents.append(debuggerAgentPtr.release());
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DGLContext.cpp151 return eglContext.release();
158 return glxContext.release();
162 return eglContext.release();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/efl/
H A DCairoUtilitiesEfl.cpp85 return image.release();
106 return surface.release();
127 return surface.release();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/surfaces/egl/
H A DEGLSurface.cpp52 return surface.release();
70 return client.release();
125 return surface.release();
/macosx-10.9.5/WebKit-7537.78.2/mac/Panels/
H A DWebAuthenticationPanel.m58 [panel release];
60 [callback release];
236 [credential release];
237 [chall release];
269 [credential release];
270 [chall release];
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebContextMenuClient.cpp63 return menu.release();
73 return menu.release();
79 return customizedMenu.release();
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebNavigationData.cpp97 *url = BString(m_url).release();
105 *title = BString(m_title).release();
140 *clientRedirectSource = BString(m_clientRedirectSource).release();
/macosx-10.9.5/cddafs-252/
H A DAppleCDDAFileSystemUtilities.cpp109 cdMediaPtr->release ( );
254 matchingDictPtr->release ( );
281 // Bump the refcount on the CDMedia so that when we release the iterator
291 iteratorPtr->release ( );
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/CredentialsCache/
H A DCredentialsCache.h306 /* $Copyright: * * Copyright 1998-2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Export of this software from the United States of America may require a * specific license from the United States Government. It is the * responsibility of any person or organization contemplating export to * obtain such a license before exporting. * * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and distribute * this software and its documentation for any purpose and without fee is * hereby granted, provided that the above copyright notice appear in all * copies and that both that copyright notice and this permission notice * appear in supporting documentation, and that the name of M.I.T. not be * used in advertising or publicity pertaining to distribution of the * software without specific, written prior permission. Furthermore if you * modify this software you must label your software as modified software * and not distribute it in such a fashion that it might be confused with * the original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/CredentialsCache/CredentialsCache.h,v 1.4 2005/01/10 19:17:31 snsimon Exp $ */ /* * Declarations for Credentials Cache API Library * * API specification: <http://web.mit.edu/pismere/kerberos/ccache-api-v2.html> * * Revision 1: Frank Dabek, 6/4/1998 * Revision 2: meeroh, 2/24/1999 * Revision 3: meeroh, 11/12/1999 * */ #ifndef __CREDENTIALSCACHE__ #define __CREDENTIALSCACHE__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #include <KerberosSupport/KerberosConditionalMacros.h> #if TARGET_API_MAC_OSX && TARGET_API_MAC_CARBON #include <CoreServices/CoreServices.h> #elif TARGET_API_MAC_OS8 || TARGET_API_MAC_CARBON #include <MacTypes.h> #else #error "Unknown OS; no system types available" #endif #if PRAGMA_IMPORT # pragma import on #endif /* This stuff is to make sure that we always use the same compiler options for this header file. Otherwise we get really exciting failure modes -- meeroh */ #if PRAGMA_STRUCT_ALIGN #pragma options align=mac68k4byte #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(push, 4) #elif PRAGMA_STRUCT_PACK #pragma pack(4) #endif #if PRAGMA_ENUM_ALWAYSINT #pragma enumsalwaysint on #endif #if TARGET_CPU_68K #pragma fourbyteints on #endif /* * Constants */ /* API versions */ enum { ccapi_version_2 = 2, ccapi_version_3 = 3, ccapi_version_4 = 4 }; /* Errors */ enum { ccNoError = 0, ccIteratorEnd = 201, ccErrBadParam, ccErrNoMem, ccErrInvalidContext, ccErrInvalidCCache, ccErrInvalidString, /* 206 */ ccErrInvalidCredentials, ccErrInvalidCCacheIterator, ccErrInvalidCredentialsIterator, ccErrInvalidLock, ccErrBadName, /* 211 */ ccErrBadCredentialsVersion, ccErrBadAPIVersion, ccErrContextLocked, ccErrContextUnlocked, ccErrCCacheLocked, /* 216 */ ccErrCCacheUnlocked, ccErrBadLockType, ccErrNeverDefault, ccErrCredentialsNotFound, ccErrCCacheNotFound, /* 221 */ ccErrContextNotFound, ccErrServerUnavailable }; /* Credentials versions */ enum { cc_credentials_v4 = 1, cc_credentials_v5 = 2, cc_credentials_v4_v5 = 3 }; /* * Basic types */ typedef UInt32 cc_uint32; typedef SInt32 cc_int32; typedef cc_uint32 cc_time_t; /* * API types */ /* Forward declarations */ struct cc_context_f; typedef struct cc_context_f cc_context_f; struct cc_ccache_f; typedef struct cc_ccache_f cc_ccache_f; struct cc_ccache_iterator_f; typedef struct cc_ccache_iterator_f cc_ccache_iterator_f; struct cc_ccache_iterator_f; typedef struct cc_credentials_iterator_f cc_credentials_iterator_f; struct cc_string_f; typedef struct cc_string_f cc_string_f; struct cc_credentials_f; typedef struct cc_credentials_f cc_credentials_f; /* Credentials types */ enum { /* Make sure all of these are multiples of four (for alignment sanity) */ cc_v4_name_size = 40, cc_v4_instance_size = 40, cc_v4_realm_size = 40, cc_v4_ticket_size = 1254 }; enum cc_string_to_key_type { cc_v4_stk_afs = 0, cc_v4_stk_des = 1, cc_v4_stk_columbia_special = 2, cc_v4_stk_unknown = 3 }; struct cc_credentials_v4_t { cc_uint32 version; char principal [cc_v4_name_size]; char principal_instance [cc_v4_instance_size]; char service [cc_v4_name_size]; char service_instance [cc_v4_instance_size]; char realm [cc_v4_realm_size]; unsigned char session_key [8]; cc_int32 kvno; cc_int32 string_to_key_type; cc_time_t issue_date; cc_int32 lifetime; cc_uint32 address; cc_int32 ticket_size; unsigned char ticket [cc_v4_ticket_size]; }; typedef struct cc_credentials_v4_t cc_credentials_v4_t; struct cc_data { cc_uint32 type; cc_uint32 length; void* data; }; typedef struct cc_data cc_data; struct cc_credentials_v5_t { char* client; char* server; cc_data keyblock; cc_time_t authtime; cc_time_t starttime; cc_time_t endtime; cc_time_t renew_till; cc_uint32 is_skey; cc_uint32 ticket_flags; cc_data** addresses; cc_data ticket; cc_data second_ticket; cc_data** authdata; }; typedef struct cc_credentials_v5_t cc_credentials_v5_t; struct cc_credentials_union { cc_int32 version; union { cc_credentials_v4_t* credentials_v4; cc_credentials_v5_t* credentials_v5; } credentials; }; typedef struct cc_credentials_union cc_credentials_union; /* Exposed parts */ struct cc_context_d { const cc_context_f* functions; #if TARGET_OS_MAC const cc_context_f* otherFunctions; #endif }; typedef struct cc_context_d cc_context_d; typedef cc_context_d* cc_context_t; struct cc_ccache_d { const cc_ccache_f* functions; #if TARGET_OS_MAC const cc_ccache_f* otherFunctions; #endif }; typedef struct cc_ccache_d cc_ccache_d; typedef cc_ccache_d* cc_ccache_t; struct cc_ccache_iterator_d { const cc_ccache_iterator_f* functions; #if TARGET_OS_MAC const cc_ccache_iterator_f* otherFunctions; #endif }; typedef struct cc_ccache_iterator_d cc_ccache_iterator_d; typedef cc_ccache_iterator_d* cc_ccache_iterator_t; struct cc_credentials_iterator_d { const cc_credentials_iterator_f* functions; #if TARGET_OS_MAC const cc_credentials_iterator_f* otherFunctions; #endif }; typedef struct cc_credentials_iterator_d cc_credentials_iterator_d; typedef cc_credentials_iterator_d* cc_credentials_iterator_t; struct cc_string_d { const char* data; const cc_string_f* functions; #if TARGET_OS_MAC const cc_string_f* otherFunctions; #endif }; typedef struct cc_string_d cc_string_d; typedef cc_string_d* cc_string_t; struct cc_credentials_d { const cc_credentials_union* data; const cc_credentials_f* functions; #if TARGET_OS_MAC const cc_credentials_f* otherFunctions; #endif }; typedef struct cc_credentials_d cc_credentials_d; typedef cc_credentials_d* cc_credentials_t; /* Function pointer structs */ struct cc_context_f { cc_int32 (*release) ( cc_context_t context); cc_int32 (*get_change_time) ( cc_context_t context, cc_time_t* time); cc_int32 (*get_default_ccache_name) ( cc_context_t context, cc_string_t* name); cc_int32 (*open_ccache) ( cc_context_t context, const char* name, cc_ccache_t* ccache); cc_int32 (*open_default_ccache) ( cc_context_t context, cc_ccache_t* ccache); cc_int32 (*create_ccache) ( cc_context_t context, const char* name, cc_uint32 cred_vers, const char* principal, cc_ccache_t* ccache); cc_int32 (*create_default_ccache) ( cc_context_t context, cc_uint32 cred_vers, const char* principal, cc_ccache_t* ccache); cc_int32 (*create_new_ccache) ( cc_context_t context, cc_uint32 cred_vers, const char* principal, cc_ccache_t* ccache); cc_int32 (*new_ccache_iterator) ( cc_context_t context, cc_ccache_iterator_t* iterator); cc_int32 (*lock) ( cc_context_t context, cc_uint32 lock_type, cc_uint32 block); cc_int32 (*unlock) ( cc_context_t context); cc_int32 (*compare) ( cc_context_t context, cc_context_t compare_to, cc_uint32* equal); }; struct cc_ccache_f { cc_int32 (*release) ( cc_ccache_t ccache); cc_int32 (*destroy) ( cc_ccache_t ccache); cc_int32 (*set_default) ( cc_ccache_t ccache); cc_int32 (*get_credentials_version) ( cc_ccache_t ccache, cc_uint32* credentials_version); cc_int32 (*get_name) ( cc_ccache_t ccache, cc_string_t* name); cc_int32 (*get_principal) ( cc_ccache_t ccache, cc_uint32 credentials_version, cc_string_t* principal); cc_int32 (*set_principal) ( cc_ccache_t ccache, cc_uint32 credentials_version, const char* principal); cc_int32 (*store_credentials) ( cc_ccache_t ccache, const cc_credentials_union* credentials); cc_int32 (*remove_credentials) ( cc_ccache_t ccache, cc_credentials_t credentials); cc_int32 (*new_credentials_iterator) ( cc_ccache_t ccache, cc_credentials_iterator_t* iterator); cc_int32 (*move) ( cc_ccache_t source, cc_ccache_t destination); cc_int32 (*lock) ( cc_ccache_t ccache, cc_uint32 block, cc_uint32 lock_type); cc_int32 (*unlock) ( cc_ccache_t ccache); cc_int32 (*get_last_default_time) ( cc_ccache_t ccache, cc_time_t* time); cc_int32 (*get_change_time) ( cc_ccache_t ccache, cc_time_t* time); cc_int32 (*compare) ( cc_ccache_t ccache, cc_ccache_t compare_to, cc_uint32* equal); }; struct cc_string_f { cc_int32 (*release) ( cc_string_t string); }; struct cc_credentials_f { cc_int32 (*release) ( cc_credentials_t credentials); cc_int32 (*compare) ( cc_credentials_t credentials, cc_credentials_t compare_to, cc_uint32* equal); }; struct cc_ccache_iterator_f { cc_int32 (*release) ( cc_ccache_iterator_t iter); cc_int32 (*next) ( cc_ccache_iterator_t iter, cc_ccache_t* ccache); }; struct cc_credentials_iterator_f { cc_int32 (*release) ( cc_credentials_iterator_t iter); cc_int32 (*next) ( cc_credentials_iterator_t iter, cc_credentials_t* ccache); }; /* * API functions */ cc_int32 cc_initialize ( cc_context_t* outContext, cc_int32 inVersion, cc_int32* outSupportedVersion, char const** outVendor); /* * Convenience macros */ #define cc_context_release(context) \ ((context) -> functions -> release (context)) #define cc_context_get_change_time(context, time) \ ((context) -> functions -> get_change_time (context, time)) #define cc_context_get_default_ccache_name(context, name) \ ((context) -> functions -> get_default_ccache_name (context, name)) #define cc_context_open_ccache(context, name, ccache) \ ((context) -> functions -> open_ccache (context, name, ccache)) #define cc_context_open_default_ccache(context, ccache) \ ((context) -> functions -> open_default_ccache (context, ccache)) #define cc_context_create_ccache(context, name, version, principal, ccache) \ ((context) -> functions -> create_ccache (context, name, version, principal, ccache)) #define cc_context_create_default_ccache(context, version, principal, ccache) \ ((context) -> functions -> create_default_ccache (context, version, principal, ccache)) #define cc_context_create_new_ccache(context, version, principal, ccache) \ ((context) -> functions -> create_new_ccache (context, version, principal, ccache)) #define cc_context_new_ccache_iterator(context, iterator) \ ((context) -> functions -> new_ccache_iterator (context, iterator)) #define cc_context_lock(context, type, lock) \ ((context) -> functions -> lock (context, type, lock)) #define cc_context_unlock(context) \ ((context) -> functions -> unlock (context)) #define cc_context_compare(context, compare_to, equal) \ ((context) -> functions -> compare (context, compare_to, equal)) #define cc_ccache_release(ccache) \ ((ccache) -> functions -> release (ccache)) #define cc_ccache_destroy(ccache) \ ((ccache) -> functions -> destroy (ccache)) #define cc_ccache_set_default(ccache) \ ((ccache) -> functions -> set_default (ccache)) #define cc_ccache_get_credentials_version(ccache, version) \ ((ccache) -> functions -> get_credentials_version (ccache, version)) #define cc_ccache_get_name(ccache, name) \ ((ccache) -> functions -> get_name (ccache, name)) #define cc_ccache_get_principal(ccache, version, principal) \ ((ccache) -> functions -> get_principal (ccache, version, principal)) #define cc_ccache_set_principal(ccache, version, principal) \ ((ccache) -> functions -> set_principal (ccache, version, principal)) #define cc_ccache_store_credentials(ccache, credentials) \ ((ccache) -> functions -> store_credentials (ccache, credentials)) #define cc_ccache_remove_credentials(ccache, credentials) \ ((ccache) -> functions -> remove_credentials (ccache, credentials)) #define cc_ccache_new_credentials_iterator(ccache, iterator) \ ((ccache) -> functions -> new_credentials_iterator (ccache, iterator)) #define cc_ccache_lock(ccache, lock) \ ((ccache) -> functions -> lock (ccache, lock)) #define cc_ccache_unlock(ccache, unlock) \ ((ccache) -> functions -> unlock (ccache, unlock)) #define cc_ccache_get_last_default_time(ccache, time) \ ((ccache) -> functions -> get_last_default_time (ccache, time)) #define cc_ccache_get_change_time(ccache, time) \ ((ccache) -> functions -> get_change_time (ccache, time)) #define cc_ccache_move(source, destination) \ ((source) -> functions -> move (source, destination)) #define cc_ccache_compare(ccache, compare_to, equal) \ ((ccache) -> functions -> compare (ccache, compare_to, equal)) #define cc_string_release(string) \ ((string) -> functions -> release (string)) #define cc_credentials_release(credentials) \ ((credentials) -> functions -> release (credential
1 /* $Copyright: member in struct:cc_credentials_iterator_f
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOCommandPool.cpp63 me->release();
102 me->release();
129 fSerializer->release();
H A DIOPMinformeeList.cpp155 item->release();
166 temp->release();
247 next->release();
H A DIOSubMemoryDescriptor.cpp54 self->release();
82 _parent->release();
106 _parent->release();
H A DIOService.cpp692 set->release();
710 allSet->release();
713 newTables->release();
725 job->release();
733 nub->retain(); // thread will release()
829 inst->release();
843 iter->release();
936 functionSymbol->release();
1445 copyArray->release();
1518 notify->release();
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Tests/
H A DTestDevice.cpp78 if (intES) intES->release();
79 if (commQ) commQ->release();
80 if (workLoop) workLoop->release();
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDResourceUserClient.cpp112 _device->release();
123 _queue->release();
292 object->release();
301 propertiesDesc->release();
306 properties->release();
334 _device->release();
367 release();
408 report->release();
416 report->release();
417 return kIOReturnNoMemory; // need to release repor
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/
H A Dllvm-compilers-check47 # --build=debug --build=release --build=paranoid
54 # llvmbuild will build debug, release and paranoid (debug+checks)
360 release=["--prefix=" + self.install_prefix,
371 release=[],
377 release=dict(CC=self.cc,
383 release=dict(CC=self.cc,
390 release=["-j" + str(self.jobs)],
393 release=["-j" + str(self.jobs)],
398 release=dict(),
402 release
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/
H A DDNSServiceBrowser.m235 [_srvtypeKeys release];
236 [_srvnameKeys release];
248 [_srvtypeKeys release];
249 [_srvnameKeys release];
250 [_servicesDict release];
251 [_sortedServices release];
349 [_serviceBrowser release];
388 [_sortedServices release];
400 [selected release];
403 [service release];
[all...]
/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAID.cpp42 raidSets->release();
46 raidMembers->release();
50 logicalVolumes->release();
217 set->release();
306 set->release();
315 set->release();
440 errmsg->release();
518 updateInfo->release();
601 if (iter) iter->release();
602 if (keys) keys->release();
[all...]
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelInterfaceController.cpp254 dict->release ( );
264 copyDict->release ( );
291 number->release ( );
299 dict->release ( );
315 number->release ( );
381 // First step is to release the allocated SCSI Parallel Tasks
616 copyDict->release ( );
723 hbaDict->release ( );
770 copyDict->release ( );
782 hbaDict->release ( );
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCItemComparer.cpp24 obj->release();
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioControlUserClient.cpp108 client->release();
125 client->release();
167 audioControl->release ();
187 audioControl->release();
H A DIOAudioPort.cpp77 port->release();
119 audioControls->release();
175 iterator->release();
237 iterator->release();
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDIUnknown.h67 virtual UInt32 release();
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIDWorkLoop.cpp20 loop->release();
H A DIOHIDevice.cpp163 propertyDict->release();
190 temp->release();
205 // deviceParameters->release();
223 iterator->release();
227 deviceParameters->release();

Completed in 191 milliseconds

<<11121314151617181920>>