Searched refs:mValue (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dtimeflow.h51 Interval(int seconds) { mValue = seconds; }
52 Interval(double seconds) { mValue = seconds; }
53 explicit Interval(time_t seconds) { mValue = seconds; }
55 Interval &operator += (Interval rel) { mValue += rel.mValue; return *this; }
56 Interval &operator -= (Interval rel) { mValue -= rel.mValue; return *this; }
57 Interval &operator *= (double f) { mValue *= f; return *this; }
58 Interval &operator /= (double f) { mValue /= f; return *this; }
60 bool operator < (Interval other) const { return mValue < othe
76 double mValue; member in class:Security::Time::Interval
116 double mValue; member in class:Security::Time::Absolute
[all...]
H A Dtimeflow.cpp52 { mValue = tv.tv_sec + double(tv.tv_usec) / 1E6; }
55 { mValue = tv.tv_sec + double(tv.tv_nsec) / 1E9; }
60 if (mValue > LONG_MAX) {
64 tv.tv_sec = int32_t(mValue);
66 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
74 if (mValue > LONG_MAX) {
78 ts.tv_sec = time_t(mValue);
80 ts.tv_nsec = int32_t(modf(mValue, &intPart) * 1E9);
88 if (mValue > LONG_MAX) {
91 } else if (mValue <
[all...]
H A Dtypedvalue.h64 TypedValue() : mValue() { }
65 TypedValue(const Value &v) : mValue(v) { }
66 Value &value() { return mValue; }
67 operator Value &() { return mValue; }
68 void operator = (const Value &value) { mValue = value; }
71 Value mValue; member in class:Security::TypedValue
H A Dheadermap.h77 operator const char *() const { return mValue; }
78 operator std::string () const { return mValue; }
80 char mValue[maxKeyLength]; member in struct:Security::HeaderMap::CanonicalKey
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtimeflow.h51 Interval(int seconds) { mValue = seconds; }
52 Interval(double seconds) { mValue = seconds; }
53 explicit Interval(time_t seconds) { mValue = seconds; }
55 Interval &operator += (Interval rel) { mValue += rel.mValue; return *this; }
56 Interval &operator -= (Interval rel) { mValue -= rel.mValue; return *this; }
57 Interval &operator *= (double f) { mValue *= f; return *this; }
58 Interval &operator /= (double f) { mValue /= f; return *this; }
60 bool operator < (Interval other) const { return mValue < othe
76 double mValue; member in class:Security::Time::Interval
116 double mValue; member in class:Security::Time::Absolute
[all...]
H A Dtimeflow.cpp52 { mValue = tv.tv_sec + double(tv.tv_usec) / 1E6; }
55 { mValue = tv.tv_sec + double(tv.tv_nsec) / 1E9; }
60 if (mValue > LONG_MAX) {
64 tv.tv_sec = int32_t(mValue);
66 tv.tv_usec = int32_t(modf(mValue, &intPart) * 1E6);
74 if (mValue > LONG_MAX) {
78 ts.tv_sec = time_t(mValue);
80 ts.tv_nsec = int32_t(modf(mValue, &intPart) * 1E9);
88 if (mValue > LONG_MAX) {
91 } else if (mValue <
[all...]
H A Dtypedvalue.h64 TypedValue() : mValue() { }
65 TypedValue(const Value &v) : mValue(v) { }
66 Value &value() { return mValue; }
67 operator Value &() { return mValue; }
68 void operator = (const Value &value) { mValue = value; }
71 Value mValue; member in class:Security::TypedValue
H A Dheadermap.h77 operator const char *() const { return mValue; }
78 operator std::string () const { return mValue; }
80 char mValue[maxKeyLength]; member in struct:Security::HeaderMap::CanonicalKey
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A DAuthorizationData.cpp51 mValue.length = value.length;
52 mValue.data = value.data;
61 mValue.length = length;
62 mValue.data = new uint8_t[length];
64 memcpy(mValue.data, data, length);
71 memset(mValue.data, 0, mValue.length);
72 delete[] reinterpret_cast<uint8_t*>(mValue.data);
81 memset(mValue.data, 0 , mValue
[all...]
H A Dwalkers.h336 mValue = NULL;
341 mValue = reinterpret_cast<T *>(alloc.malloc(mLength));
343 mValue = alloc.malloc<T>(mLength);
345 mValue = copy(obj, mValue);
353 mValue = NULL;
362 mValue = reinterpret_cast<T *>(alloc.malloc(mLength));
364 mValue = alloc.malloc<T>(mLength);
366 CopyWalker copier(LowLevelMemoryUtilities::increment(mValue, sizeof(T) * count));
368 mValue[
385 T *mValue; member in class:Security::DataWalkers::Copier
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A DAuthorizationData.cpp51 mValue.length = value.length;
52 mValue.data = value.data;
61 mValue.length = length;
62 mValue.data = new uint8_t[length];
64 memcpy(mValue.data, data, length);
71 memset(mValue.data, 0, mValue.length);
72 delete[] reinterpret_cast<uint8_t*>(mValue.data);
81 memset(mValue.data, 0 , mValue
[all...]
H A Dwalkers.h336 mValue = NULL;
341 mValue = reinterpret_cast<T *>(alloc.malloc(mLength));
343 mValue = alloc.malloc<T>(mLength);
345 mValue = copy(obj, mValue);
353 mValue = NULL;
362 mValue = reinterpret_cast<T *>(alloc.malloc(mLength));
364 mValue = alloc.malloc<T>(mLength);
366 CopyWalker copier(LowLevelMemoryUtilities::increment(mValue, sizeof(T) * count));
368 mValue[
385 T *mValue; member in class:Security::DataWalkers::Copier
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_filedb/
H A DSelectionPredicate.cpp39 mValue = mMetaAttribute.createValue(mData);
44 delete mValue;
50 return mMetaAttribute.evaluate(mValue, rs, mDbOperator);
H A DSelectionPredicate.h47 DbValue *mValue; member in class:Security::SelectionPredicate
H A DDbValue.h56 BasicValue(T value) : mValue(value) {}
63 return mValue == other.mValue;
66 return mValue != other.mValue;
69 return mValue < other.mValue;
72 return mValue > other.mValue;
82 const uint8 *bytes() const { return reinterpret_cast<const uint8 *>(&mValue); }
85 T mValue; member in class:Security::BasicValue
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DSelectionPredicate.cpp39 mValue = mMetaAttribute.createValue(mData);
44 delete mValue;
50 return mMetaAttribute.evaluate(mValue, rs, mDbOperator);
H A DSelectionPredicate.h47 DbValue *mValue; member in class:Security::SelectionPredicate
H A DDbValue.h56 BasicValue(T value) : mValue(value) {}
63 return mValue == other.mValue;
66 return mValue != other.mValue;
69 return mValue < other.mValue;
72 return mValue > other.mValue;
82 const uint8 *bytes() const { return reinterpret_cast<const uint8 *>(&mValue); }
85 T mValue; member in class:Security::BasicValue
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Ddlquery.cpp34 mValue(Allocator::standard())
36 mValue.copy(r.mValue);
44 mValue.copy(r.mValue);
51 mValue(Allocator::standard(), StringData(s))
56 mValue(Allocator::standard(), StringData(s))
61 mValue(Allocator::standard(), CssmData::wrap(value))
66 mValue(Allocator::standard(), CssmData::wrap(uint32(value ? 1 : 0)))
71 mValue(Allocato
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Ddlquery.cpp34 mValue(Allocator::standard())
36 mValue.copy(r.mValue);
44 mValue.copy(r.mValue);
51 mValue(Allocator::standard(), StringData(s))
56 mValue(Allocator::standard(), StringData(s))
61 mValue(Allocator::standard(), CssmData::wrap(value))
66 mValue(Allocator::standard(), CssmData::wrap(uint32(value ? 1 : 0)))
71 mValue(Allocato
[all...]
/macosx-10.10.1/libsecurity_ldap_dl-55003/lib/
H A DRelation.h56 std::string mValue; member in class:StringValue
61 const char* GetRawValue () {return mValue.c_str ();} // get the internal storage as a c string
62 std::string& GetRawValueAsStdString () {return mValue;} // get the internal storage as a c++ string
73 sint32 mValue; member in class:SInt32Value
77 const sint32 GetRawValue () {return mValue;}
88 uint32 mValue; member in class:UInt32Value
92 const uint32 GetRawValue () {return mValue;}
103 uint8* mValue; member in class:BigNumValue
119 const uint8* GetRawValue (size_t &size) {size = mSize; return mValue;}
129 double mValue; member in class:RealValue
144 time_t mValue; member in class:TimeDateValue
161 uint8* mValue; member in class:BlobValue
[all...]
H A DRelation.cpp69 StringValue::StringValue (const char* value) : Value (CSSM_DB_ATTRIBUTE_FORMAT_STRING), mValue (value)
75 StringValue::StringValue (const char* value, uint32 length) : Value (CSSM_DB_ATTRIBUTE_FORMAT_STRING), mValue (value, length)
84 size = mValue.length ();
86 strcpy (s, mValue.c_str ());
134 SInt32Value::SInt32Value (const sint32 value) : Value (CSSM_DB_ATTRIBUTE_FORMAT_SINT32), mValue (value) {}
167 *result = mValue;
177 mValue = value;
185 *result = mValue;
222 mValue = new uint8[size];
223 memmove (mValue, valu
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DPolicies.h63 const CssmData &value() const { return mValue; }
64 CssmOwnedData &value() { return mValue; }
76 CssmAutoData mValue; // value for this policy member in class:Security::KeychainCore::Policy
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DPolicies.h63 const CssmData &value() const { return mValue; }
64 CssmOwnedData &value() { return mValue; }
76 CssmAutoData mValue; // value for this policy member in class:Security::KeychainCore::Policy
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DPolicies.h63 const CssmData &value() const { return mValue; }
64 CssmOwnedData &value() { return mValue; }
76 CssmAutoData mValue; // value for this policy member in class:Security::KeychainCore::Policy

Completed in 290 milliseconds

123