Home
last modified time | relevance | path

Searched refs:timeValue (Results 1 - 11 of 11) sorted by relevance

/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dcallbacks.c461 void FillpSysArchGetCurTime(FillpSysArchTime *timeValue) in FillpSysArchGetCurTime() argument
464 QueryPerformanceCounter(&(timeValue->time)); in FillpSysArchGetCurTime()
467 FILLP_LLONG FillpSysArchTimeToLonglong(FILLP_CONST FillpSysArchTime *timeValue) in FillpSysArchTimeToLonglong() argument
473 return ((FILLP_LLONG)(timeValue->time.QuadPart * FILLP_CONST_100) / g_fillpBasePerformanceFrequency.QuadPart); in FillpSysArchTimeToLonglong()
481 FillpSysArchTime timeValue; in FillpSysAdaptArchGetCurTimeLonglong() local
482 FillpSysArchGetCurTime(&timeValue); in FillpSysAdaptArchGetCurTimeLonglong()
483 return FillpSysArchTimeToLonglong(&timeValue); in FillpSysAdaptArchGetCurTimeLonglong()
614 void FillpSysSleepMs(IN FILLP_UINT timeValue) /* In Millseconds */ in FillpSysSleepMs() argument
616 FILLP_ADP_SLEEP_MS(timeValue); in FillpSysSleepMs()
619 FILLP_INT FillpSysSleepUs(IN FILLP_UINT timeValue) /* I argument
1260 FillpSysArchTime timeValue; FillpAdaptSysArchSemWaitTimeout() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/
H A Dtext_clock_model_ng.h26 TextClockConfiguration(float timeZoneOffset, bool started, int64_t timeValue, bool enabled) in TextClockConfiguration() argument
27 : CommonConfiguration(enabled), timeZoneOffset_(timeZoneOffset), started_(started), timeValue_(timeValue) in TextClockConfiguration()
H A Dtext_clock_pattern.cpp346 auto timeValue = duration_cast_to_millis.count(); in GetCurrentFormatDateTime() local
347 auto millis = std::to_string(timeValue % 1000); in GetCurrentFormatDateTime()
361 if (timeValue - timeValue_ > LOG_INTERVAL_TIME) { in GetCurrentFormatDateTime()
362 timeValue_ = timeValue; in GetCurrentFormatDateTime()
823 auto timeValue = static_cast<int64_t>(GetMilliseconds() / MICROSECONDS_OF_MILLISECOND); in BuildContentModifierNode() local
829 TextClockConfiguration textClockConfiguration(timeZoneOffset, started, timeValue, enabled); in BuildContentModifierNode()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_security_manager.cpp189 keyData.timeValue = std::chrono::system_clock::to_time_t(std::chrono::system_clock::system_clock::now()); in SaveSecretKeyToFile()
207 std::vector<uint8_t> timeInByte = { reinterpret_cast<uint8_t *>(&keyData.timeValue), in SaveSecretKeyToDisk()
208 reinterpret_cast<uint8_t *>(&keyData.timeValue) + sizeof(time_t) }; in SaveSecretKeyToDisk()
466 rdbPasswd.isKeyExpired = IsKeyExpired(keyData.timeValue); in LoadSecretKeyFromFile()
505 keyData.timeValue = *reinterpret_cast<time_t *>(&createTime[0]); in LoadSecretKeyFromDisk()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_security_manager.h34 time_t timeValue {};
/foundation/arkui/ace_engine/frameworks/core/event/
H A Dtouch_event.cpp219 int64_t timeValue = std::chrono::duration_cast<std::chrono::nanoseconds>(time.time_since_epoch()).count(); in ToJsonValue() local
220 json->Put("ti", timeValue); in ToJsonValue()
246 int64_t timeValue = json->GetInt64("ti"); in FromJson() local
247 time = TimeStamp(std::chrono::nanoseconds(timeValue)); in FromJson()
/foundation/multimedia/player_framework/test/fuzztest/common/
H A Dtest_recorder.cpp353 uint64_t timeValue = static_cast<uint64_t>(timestamp.tv_sec) * SEC_TO_NS + static_cast<uint64_t>(timestamp.tv_nsec); in GetPts() local
354 return timeValue; in GetPts()
/foundation/arkui/ace_engine/frameworks/base/i18n/
H A Dlocalization.h223 * @param timeValue the format time value.
228 std::string TimeUnitFormat(double timeValue, TimeUnitStyle timeStyle, MeasureFormatStyle formatStyle);
H A Dlocalization.cpp684 std::string Localization::TimeUnitFormat(double timeValue, TimeUnitStyle timeStyle, MeasureFormatStyle formatStyle) in TimeUnitFormat() argument
694 Formattable formattable(timeValue); in TimeUnitFormat()
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_predicates_test.cpp153 return timeValue; in GetTimeValue()
156 void SetTimeValue(time_t timeValue) in SetTimeValue() argument
158 this->timeValue = timeValue; in SetTimeValue()
284 time_t timeValue; member in AllDataType
338 "timeValue INTEGER , characterValue TEXT , primIntValue INTEGER ,"
351 "clobValue, byteValue, timeValue, characterValue, primIntValue, primLongValue, "
434 time_t timeValue = RdbStorePredicateTest::DateMakeTime(date); in BuildAllDataType1() local
435 dataType.SetTimeValue(timeValue); in BuildAllDataType1()
682 predicates1.EqualTo("timeValue", st in CalendarTest()
[all...]
/foundation/barrierfree/accessibility/interfaces/kits/napi/src/
H A Dnapi_accessibility_utils.cpp1428 napi_value timeValue = nullptr; in GetKeyValue() local
1430 NAPI_CALL_RETURN_VOID(env, napi_create_int64(env, pressedTime, &timeValue)); in GetKeyValue()
1431 NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, keyObject, "pressedTime", timeValue)); in GetKeyValue()

Completed in 17 milliseconds