Searched defs:NULL (Results 176 - 200 of 518) sorted by relevance

1234567891011>>

/macosx-10.10/libauto-186/
H A DBlockIterator.h304 blockDo(Zone *zone, void *block, void (^subzoneDo) (Subzone *subzone, usword_t q), void (^largeDo) (Large *large), void (^elseDo) (void *block) = NULL) argument
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Darray_allocator.h112 array_allocator(array_type* __array = NULL) throw() argument
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_/
H A Dpoint_iterators.hpp133 bin_search_tree_const_it_(const Node_Pointer p_nd = NULL) argument
306 bin_search_tree_it_(const Node_Pointer p_nd = NULL) argument
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_/
H A Dnode_iterators.hpp131 ov_tree_node_const_it_(const_pointer p_nd = NULL, const_pointer p_begin_nd = NULL, const_pointer p_end_nd = NULL, const_metadata_pointer p_metadata = NULL) : m_p_value(const_cast<pointer>(p_nd)), m_p_begin_value(const_cast<pointer>(p_begin_nd)), m_p_end_value(const_cast<pointer>(p_end_nd)), m_p_metadata(p_metadata) argument
254 ov_tree_node_it_(const_pointer p_nd = NULL, const_pointer p_begin_nd = NULL, const_pointer p_end_nd = NULL, const_metadata_pointe argument
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_/
H A Dnode_iterators.hpp189 pat_trie_const_node_it_(node_pointer p_nd = NULL, argument
308 pat_trie_node_it_(node_pointer p_nd = NULL, const_e_access_traits_pointer p_traits = NULL) : base_type(p_nd, p_traits) argument
/macosx-10.10/libxml2-26/libxml2/
H A DtestOOMlib.c26 #define NULL ((void*)0) macro
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } argument
168 void reset(T* ptr = NULL) { argument
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/win32/
H A Dcommon.mak122 NULL= macro
124 NULL=nul macro
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_digest.c222 EVP_DigestFinal_ex(ctx, (unsigned char *)RSTRING_PTR(str), NULL); local
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclTestProcBodyObj.c263 "command \\"", fullName, "\\" is not a Tcl procedure", NULL); local
275 "\\" does not have a Proc struct!", NULL); local
287 fullName, "\\"", NULL); local
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A DdeleteVars.c388 NULL, flags, /* leaveErrMsg */ 0); local
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkMain.c154 Tcl_SetStartupScript(Tcl_NewStringObj(argv[1], -1), NULL); local
160 Tcl_SetStartupScript(Tcl_NewStringObj(argv[2], -1), NULL); local
[all...]
/macosx-10.10/DiskArbitration-268/diskarbitrationd/
H A DDAMount.c167 NULL ); local
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A Dcgnomelayout.c128 GTK_SIGNAL_FUNC(gtk_main_quit), NULL); local
247 GTK_SIGNAL_FUNC(eventDelete), NULL); local
[all...]
H A Dgnomelayout.cpp136 GTK_SIGNAL_FUNC(gtk_main_quit), NULL); local
248 GTK_SIGNAL_FUNC(eventDelete), NULL); local
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/perf/convperf/
H A Dconvperf.h176 NULL, local
231 NULL, local
287 NULL, local
343 NULL, local
399 NULL, local
453 NULL, local
[all...]
/macosx-10.10/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBatteryManager.cpp407 NULL, NULL, NULL, NULL); local
412 NULL, NULL, NUL local
418 NULL, NULL, NULL, NULL); local
441 (void *)&ret, NULL); local
462 (void *)&ret, NULL); local
490 (void *)&ret, NULL); local
532 (void *)request, NULL, NULL, NULL); local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dsecurestorage.h184 SSDb(const SSCSPDL &cspdl, const char *inDbName, const CSSM_NET_ADDRESS *inDbLocation = NULL) argument
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcontext.h127 assert(ix < NumberOfAttributes); return static_cast<Attr &>(ContextAttributes[ix]); } const Attr &operator [] (unsigned int ix) const { assert(ix < NumberOfAttributes); return static_cast<Attr &>(ContextAttributes[ix]); } Attr *find(CSSM_ATTRIBUTE_TYPE theType) const { return find(theType, ContextAttributes, NumberOfAttributes); } template <class Elem> Elem &get(CSSM_ATTRIBUTE_TYPE type, CSSM_RETURN err) const { if (Attr *attr = find(type)) return static_cast<Elem &>(*attr); else CssmError::throwMe(err); } template <class Elem> Elem *get(CSSM_ATTRIBUTE_TYPE type) const { if (Attr *attr = find(type)) return &static_cast<Elem &>(*attr); else return NULL; } uint32 getInt(CSSM_ATTRIBUTE_TYPE type, CSSM_RETURN err) const { if (Attr *attr = find(type)) return static_cast<uint32>(*attr); else CssmError::throwMe(err); } uint32 getInt(CSSM_ATTRIBUTE_TYPE type) const { if (Attr *attr = find(type)) return static_cast<uint32>(*attr); else return 0; } bool getInt(CSSM_ATTRIBUTE_TYPE type, uint32 &value) const { if (Attr *attr = find(type)) { value = static_cast<uint32>(*attr); return true; } else return false; } public: template <class T> void replace(CSSM_ATTRIBUTE_TYPE type, const T &newValue) const { if (Attr *attr = find(type)) *attr = Attr(type, newValue); else CssmError::throwMe(CSSMERR_CSSM_ATTRIBUTE_NOT_IN_CONTEXT); } public: void *operator new (size_t size, Allocator &alloc) throw(std::bad_alloc) { return alloc.malloc(size); } void operator delete (void *addr, size_t, Allocator &alloc) throw() { return alloc.free(addr); } static void destroy(Context *context, Allocator &alloc) throw() { alloc.free(context->ContextAttributes); alloc.free(context); } public: void postIPC(void *base, CSSM_CONTEXT_ATTRIBUTE *ipcAttributes); public: class Builder; IFDUMP(void dump(const char *title = NULL, const CSSM_CONTEXT_ATTRIBUTE *attrs = NULL) const;) protected: static Attr *find(CSSM_ATTRIBUTE_TYPE theType, const CSSM_CONTEXT_ATTRIBUTE *attrs, unsigned int count); }; namespace DataWalkers { template <class Action> void walk(Action &operate, CSSM_CONTEXT_ATTRIBUTE &attr) { operate(attr); if (attr.Attribute.String) switch (attr.AttributeType & CSSM_ATTRIBUTE_TYPE_MASK) { case CSSM_ATTRIBUTE_DATA_CSSM_DATA: walk(operate, attr.Attribute.Data); break; case CSSM_ATTRIBUTE_DATA_CRYPTO_DATA: walk(operate, attr.Attribute.CryptoData); break; case CSSM_ATTRIBUTE_DATA_KEY: walk(operate, attr.Attribute.Key); break; case CSSM_ATTRIBUTE_DATA_STRING: walk(operate, attr.Attribute.String); break; case CSSM_ATTRIBUTE_DATA_DATE: walk(operate, attr.Attribute.Date); break; case CSSM_ATTRIBUTE_DATA_RANGE: walk(operate, attr.Attribute.Range); break; case CSSM_ATTRIBUTE_DATA_ACCESS_CREDENTIALS: walk(operate, attr.Attribute.AccessCredentials); break; case CSSM_ATTRIBUTE_DATA_VERSION: walk(operate, attr.Attribute.Version); break; case CSSM_ATTRIBUTE_DATA_DL_DB_HANDLE: walk(operate, attr.Attribute.DLDBHandle); break; case CSSM_ATTRIBUTE_NONE: case CSSM_ATTRIBUTE_DATA_UINT32: break; default: secdebug(�, �, (unsigned)attr.AttributeType); break; } } template <class Action> void walk(Action &operate, Context::Attr &attr) { walk(operate, static_cast<CSSM_CONTEXT_ATTRIBUTE &>(attr)); } } using namespace DataWalkers; class Context::Builder { protected: public: Builder(Allocator &alloc) : allocator(alloc) { slotCount = 0; attributes = NULL; } ~Builder() { allocator.free(attributes); } Allocator &allocator; size_t make(); void done(CSSM_CONTEXT_ATTRIBUTE * &attributes, uint32 &count); public: template <class T> void setup(T p, CSSM_RETURN invalidError = CSSM_OK) { if (p) { slotCount++; walk(sizer, unconst_ref_cast(p)); } else if (invalidError) CssmError::throwMe(invalidError); } void setup(uint32 n, CSSM_RETURN invalidError = CSSM_OK) { if (n) slotCount++; else if (invalidError) CssmError::throwMe(invalidError); } void setup(CSSM_SIZE n, CSSM_RETURN invalidError = CSSM_OK) { if (n) slotCount++; else if (invalidError) CssmError::throwMe(invalidError); } void setup(const CSSM_KEY *k, CSSM_RETURN invalidError = CSSM_OK) { if (!invalidError) { if (k) { slotCount++; walk(sizer, unconst_ref_cast(k)); } return; } if (!(k) || (k->KeyHeader.HeaderVersion > CSSM_KEYHEADER_VERSION) argument
H A Dcssmaclpod.h209 AutoAclEntryInfoList(Allocator *allocator = NULL) argument
[all...]
H A Dcssmpods.h110 CryptoCallback(CSSM_CALLBACK func, void *ctx = NULL) : mFunction(func), mCtx(ctx) { } argument
131 CssmCryptoData(const CssmData &param, CSSM_CALLBACK callback = NULL, void *ctx = NULL) argument
137 CssmCryptoData(CSSM_CALLBACK callback, void *ctx = NULL) argument
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utils/
H A DcuEnc64.c25 #define NULL ((void *)0) macro
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Ddiskrep.h113 static DiskRep *bestGuess(const std::string &path, const Context *ctx = NULL) argument
116 static DiskRep *bestFileGuess(const std::string &path, const Context *ctx = NULL) { return bestFileGuess(path.c_str(), ctx); } argument
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A DbyteRep.c38 #define NULL ((void *)0) macro
[all...]
H A DckDES.c38 #define NULL ((void *)0) macro
[all...]

Completed in 227 milliseconds

1234567891011>>