Searched refs:_value (Results 1 – 3 of 3) sorted by relevance
/system/security/keystore/ |
D | keystore_attestation_id.h | 28 StatusOr(const status_t error) : _status(error), _value() {} in StatusOr() 29 StatusOr(const T& value) : _status(NO_ERROR), _value(value) {} in StatusOr() 30 StatusOr(T&& value) : _status(NO_ERROR), _value(value) {} in StatusOr() 32 operator const T&() const { return _value; } 33 operator T&() { return _value; } 34 operator T &&() && { return std::move(_value); } 40 const T& value() const & { return _value; } in value() 41 T& value() & { return _value; } in value() 42 T&& value() && { return std::move(_value); } in value() 46 T _value; variable
|
/system/core/liblog/include/log/ |
D | log.h | 124 #define LOG_EVENT_INT(_tag, _value) \ argument 126 int intBuf = _value; \ 131 #define LOG_EVENT_LONG(_tag, _value) \ argument 133 long long longBuf = _value; \ 138 #define LOG_EVENT_FLOAT(_tag, _value) \ argument 140 float floatBuf = _value; \ 146 #define LOG_EVENT_STRING(_tag, _value) \ argument 147 (void)__android_log_bswrite(_tag, _value);
|
/system/core/libutils/include/utils/ |
D | LruCache.h | 74 Entry(TKey _key, TValue _value) : key(_key), value(_value), parent(NULL), child(NULL) { in Entry() argument
|