/base/request/request/services/src/service/command/ |
H A D | search.rs | 35 let before: i64 = data.read()?; 36 debug!("Service search: before is {}", before); 47 before,
|
/base/request/request/services/src/manage/ |
H A D | query.rs | 144 filter.after, filter.before in search_filter() 179 before: i64, 212 before: get_current_timestamp() as i64, in ut_search_user() 222 before: get_current_timestamp() as i64, in ut_search_user() 232 before: get_current_timestamp() as i64, in ut_search_user() 242 before: get_current_timestamp() as i64, in ut_search_user() 252 before: get_current_timestamp() as i64, in ut_search_user() 262 before: get_current_timestamp() as i64, in ut_search_user() 290 before: get_current_timestamp() as i64, in ut_search_system() 300 before in ut_search_system() [all...] |
/base/security/appverify/interfaces/innerkits/appverify/test/unittest/src/ |
H A D | provision_verify_test.cpp | 45 "not-before": 1262275201, 65 "not-before": 1262275200, 85 "not-before": 1262275200, 105 "not-before": 1262275300, 130 "not-before": 1262275600, 153 "not-before": 1262275600, 177 "not-before": 1262275700, 329 "not-before": 1262275200, in HWTEST_F() 418 "not-before": 1262275200, 467 "not-before" [all...] |
/base/security/code_signature/test/unittest/ |
H A D | rust_key_enable_test.rs | 118 "not-before": 1, in test_parse_enterprise_profile() 157 "not-before": 1, in test_parse_enterprise_normal_profile() 196 "not-before": 1, in test_parse_enterprise_mdm_profile() 235 "not-before": 1, in test_parse_debug_profile() 280 "not-before": 1, in test_parse_iternaltesting_profile() 325 "not-before": 1, in test_parse_invalid_profile() 359 "not-before": 1, in test_parse_invalid_profile() 395 "not-before": 1, in test_parse_invalid_profile()
|
/base/request/request/frameworks/cj/ffi/src/ |
H A D | cj_request_impl.cpp | 371 int64_t CJRequestImpl::ParseBefore(RequestNativeOptionInt64 &before) in ParseBefore() argument 376 return before.hasValue ? before.value : now; in ParseBefore() 380 int64_t CJRequestImpl::ParseAfter(RequestNativeOptionInt64 &after, int64_t before) in ParseAfter() argument 382 return after.hasValue ? after.value : (before - MILLISECONDS_IN_ONE_DAY); in ParseAfter() 404 out.before = ParseBefore(filter.before); in Convert2Filter() 405 out.after = ParseAfter(filter.after, out.before); in Convert2Filter() 406 if (out.before < out.after) { in Convert2Filter() 407 REQUEST_HILOGE("before i in Convert2Filter() [all...] |
/base/request/request/frameworks/cj/ffi/include/ |
H A D | cj_request_impl.h | 72 static int64_t ParseBefore(RequestNativeOptionInt64 &before); 73 static int64_t ParseAfter(RequestNativeOptionInt64 &after, int64_t before);
|
H A D | cj_request_ffi.h | 156 RequestNativeOptionInt64 before; member
|
/base/update/updater/services/script/script_interpreter/ |
H A D | script_statement.h | 106 static UScriptStatement* CreateForStatement(UScriptExpression *before,
166 UScriptForStatement(UScriptExpression *before, UScriptExpression *condition, UScriptExpression *after,
in UScriptForStatement() argument 167 UScriptStatementList *statements) : UScriptStatement(STATEMENT_TYPE_FOR), before_(before),
in UScriptForStatement()
|
H A D | script_statement.cpp | 109 UScriptStatement* UScriptStatement::CreateForStatement(UScriptExpression *before,
in CreateForStatement() argument 114 return new UScriptForStatement(before, condition, after, list);
in CreateForStatement() 188 INTERPRETER_LOGE(interpreter, context, "Execute before");
in Execute()
|
/base/hiviewdfx/hiview/base/event_store/dao/ |
H A D | sys_event_query_wrapper.cpp | 154 bool SysEventQueryWrapper::IsQueryCostTimeValid(const DbQueryTag& tag, const time_t before, in IsQueryCostTimeValid() argument 158 time_t duration = after - before; in IsQueryCostTimeValid()
|
/base/hiviewdfx/hiview/base/event_store/include/ |
H A D | sys_event_query_wrapper.h | 139 bool IsQueryCostTimeValid(const DbQueryTag& tag, const time_t before, const time_t after,
|
/base/request/request/frameworks/js/napi/src/ |
H A D | js_task.cpp | 688 filter.before = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
in ParseSearch() 689 filter.after = filter.before - MILLISECONDS_IN_ONE_DAY;
in ParseSearch() 704 filter.before = ParseBefore(env, argv[0]);
in ParseSearch() 705 filter.after = ParseAfter(env, argv[0], filter.before);
in ParseSearch() 706 if (filter.before < filter.after) {
in ParseSearch() 707 REQUEST_HILOGE("before is small than after");
in ParseSearch() 709 err.errInfo = "Parameter verification failed, filter before is small than after";
in ParseSearch() 770 if (!NapiUtils::HasNamedProperty(env, value, "before")) {
in ParseBefore() 773 napi_value value1 = NapiUtils::GetNamedProperty(env, value, "before");
in ParseBefore() 782 int64_t JsTask::ParseAfter(napi_env env, napi_value value, int64_t before)
in ParseAfter() argument [all...] |
/base/request/request/test/rustest/src/ |
H A D | lib.rs | 248 before: i64, in search() 257 data.write(&before).unwrap(); in search()
|
/base/request/request/frameworks/js/napi/include/ |
H A D | js_common.h | 256 int64_t before;
member
|
H A D | js_task.h | 117 static int64_t ParseAfter(napi_env env, napi_value value, int64_t before);
|
/base/request/request/frameworks/native/src/ |
H A D | request_service_proxy.cpp | 244 data.WriteInt64(filter.before);
in Search()
|