Home
last modified time | relevance | path

Searched refs:TAG (Results 1 – 25 of 49) sorted by relevance

12

/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/controller/
DfaceConfigController.ts21 private readonly TAG: string = 'FaceConfigController'; property in FaceConfigController
24 Log.info(this.TAG, "constructor+")
25 Log.info(this.TAG, "constructor-")
29 Log.info(this.TAG, "deleteFace+")
31 Log.info(this.TAG, "deleteFace result: " + result)
33 Log.info(this.TAG, "deleteFace routeBack+")
35 Log.info(this.TAG, "deleteFace routerBack-")
37 Log.error(this.TAG, "deleteFace fail")
40 Log.error(this.TAG, "deleteFace exception")
44 Log.info(this.TAG, "deleteFace-")
DentryViewController.ts22 private readonly TAG: string = 'EntryViewController'; property in EntryViewController
25 Log.info(this.TAG, "constructor+")
27 Log.info(this.TAG, "constructor-")
32 Log.info(this.TAG, "doPINAuth+")
36 Log.error(this.TAG, "authPin fail ")
40 Log.info(this.TAG, "set token ok")
42 Log.error(this.TAG, "exception " + JSON.stringify(err))
43 Log.info(this.TAG, "doPINAuth -")
47 Log.info(this.TAG, "route to enrollIntro")
50 Log.info(this.TAG, "route to faceConfig")
[all …]
DenrollingController.ts24 private readonly TAG: string = 'EnrollingController'; property in EnrollingController
29 Log.info(this.TAG, 'constructor+')
30 Log.info(this.TAG, 'constructor-')
34 Log.info(this.TAG, 'init+')
50 Log.info(this.TAG, 'init-')
54 Log.info(this.TAG, 'startEnroll+')
56 Log.info(this.TAG, 'surface id is not set, skip start enroll')
60 Log.info(this.TAG, 'face is enrolling, skip start enroll')
67 Log.info(this.TAG, 'startEnroll-')
82 Log.info(this.TAG, 'onAcquire+ result: ' + result)
[all …]
DcommonController.ts22 private readonly TAG: string = 'CommonController'; property in CommonController
25 Log.info(this.TAG, 'router getLength: ' + router.getLength())
27 Log.info(this.TAG, 'router back: back+')
29 Log.info(this.TAG, 'router back: back-')
31 Log.info(this.TAG, 'router back: terminate ability+')
33 Log.info(this.TAG, 'router back: terminate ability-')
38 Log.info(this.TAG, 'terminate ability+')
41 .then(data => Log.info(this.TAG, 'terminateSelf promise then ' + data))
42 .catch(error => Log.error(this.TAG, 'terminateSelf promise catch ' + error));
43 Log.info(this.TAG, 'terminate ability-')
[all …]
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/model/
DuserIdmModel.ts21 protected readonly TAG: string = 'UserIdmModel'; property in UserIdmModel
30 Log.info(this.TAG, "constructor+")
32 Log.info(this.TAG, "constructor-")
36 Log.info(this.TAG, "destroy+")
38 Log.info(this.TAG, "destroy-")
48 Log.info(this.TAG, "setToken ok, size " + token.length)
54 Log.info(this.TAG, "getToken ok, size " + token.length)
61 Log.info(this.TAG, "setCredentialId ok, size " + credId.length)
67 Log.info(this.TAG, "getCredentialId ok, size " + credId.length)
73 Log.info(this.TAG, 'getAuthInfo length ' + data.length)
[all …]
DfaceAuthModel.ts20 protected readonly TAG: string = 'FaceAuthModel'; property in FaceAuthModel
24 Log.info(this.TAG, "constructor +")
26 Log.info(this.TAG, "constructor -")
30 Log.info(this.TAG, 'set surface id ' + surfaceIdString);
33 Log.info(this.TAG, 'setSurfaceId result is success')
35 Log.info(this.TAG, 'setSurfaceId result is failed')
40 Log.info(this.TAG, 'clearSurfaceId+');
42 Log.info(this.TAG, 'clearSurfaceId-');
DuserAuthModel.ts21 protected readonly TAG: string = 'UserAuthModel'; property in UserAuthModel
27 Log.info(this.TAG, "constructor+")
30 Log.info(this.TAG, "constructor-")
34 Log.info(this.TAG, "auth Pin+")
37 Log.info(this.TAG, 'FaceEnroll pin.registerInputer start')
45 Log.info(this.TAG, 'authPin onResult: ' + result);
49 Log.info(this.TAG, 'authPin success');
52 Log.error(this.TAG, 'authPin fail');
58 Log.info(this.TAG, "auth Pin-")
/base/telephony/telephony_data/entry/src/main/ets/common/utils/
DLogUtils.ts20 d(TAG, msg): void {
21 console.debug("[TelephonyData:]" + TAG + ":" + msg);
24 i(TAG, msg): void {
25 console.info("[TelephonyData:]" + TAG + ":" + msg);
28 w(TAG, msg): void {
29 console.warn("[TelephonyData:]" + TAG + ":" + msg);
32 e(TAG, msg): void {
33 console.error("[TelephonyData:]" + TAG + ":" + msg);
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/MainAbility/
DMainAbility.ts23 private readonly TAG: string = 'MainAbility:'; property in MainAbility
25 Log.info(this.TAG, 'Application onCreate')
31 Log.info(this.TAG, 'Application onDestroy+')
34 Log.info(this.TAG, 'Application onDestroy-')
38 Log.info(this.TAG, 'onWindowStageCreate')
43 Log.info(this.TAG, 'onWindowStageDestroy')
47 Log.info(this.TAG, 'Application onBackground+, terminate ability')
49 Log.info(this.TAG, 'Application onBackground-')
/base/usb/usb_manager/frameworks/dialog/dialog_ui/usb_right_dialog/src/main/ets/MainAbility/
DMainAbility.ts18 let TAG = 'UsbRightDialog_MainAbility:'; variable
22 console.log(TAG + 'MainAbility onCreate, ability name is ' + want.abilityName + '.');
28 console.log(TAG + 'MainAbility onWindowStageCreate.');
35 console.log(TAG + 'MainAbility onForeground.');
40 console.log(TAG + 'MainAbility onBackground.');
44 console.log(TAG + 'MainAbility onDestroy.');
49 console.log(TAG + 'MainAbility onWindowStageDestroy.');
/base/usb/usb_manager/frameworks/dialog/functionswitch_ui/usb_function_dialog/src/main/ets/pages/
DIndex.ets21 const TAG: string = 'usbfunctionswitchwindow_Index';
67 Logger.info(TAG, 'close pop up window: charge only');
70 Logger.info(TAG, 'Hide window success');
72 Logger.error(TAG, `Failed to hide the Window. Cause: ${JSON.stringify(err)}`);
95 Logger.info(TAG, 'close pop up window: xfer file');
98 Logger.info(TAG, 'Hide window success');
100 Logger.error(TAG, `Failed to hide the Window. Cause: ${JSON.stringify(err)}`);
123 Logger.info(TAG, 'close pop up window: xfer pic');
125 Logger.info(TAG, 'Hide window success');
127 Logger.error(TAG, `Failed to hide the Window. Cause: ${JSON.stringify(err)}`);
[all …]
/base/inputmethod/imf/services/dialog/entry/src/main/ets/ServiceExtAbility/
DServiceExtAbility.ts22 let TAG = '[InputMethodChooseDialog]'; variable
31 console.log(TAG, 'onCreate');
36 console.log(TAG, 'onRequest execute');
54 console.log(TAG + 'getDefaultDisplay err:' + JSON.stringify(err));
60 console.log(TAG + 'commonEvent:' + JSON.stringify(commonEvent1));
69 console.log(TAG + 'switchInputMethod failed,' + JSON.stringify(err));
74 console.log(TAG + 'switchInputMethod success');
87 console.log(TAG + 'ServiceExtAbility destroyed');
92 console.log(TAG + 'createWindow execute');
108 console.log(TAG + 'windowEvent:' + JSON.stringify(data));
[all …]
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/config/
Dconfig.ts20 private readonly TAG: string = 'Config'; property in Config
26 Log.info(this.TAG, "constructor+")
29 Log.info(this.TAG, "mock mode ")
33 Log.info(this.TAG, "display height: " + display.height +
41 Log.info(this.TAG, "constructor-")
/base/update/update_app/product/oh/base/src/main/ets/ServiceExtAbility/
Dservice.ts29 private static readonly TAG = 'ServiceExtAbility'; property in ServiceExtAbility
33 LogUtils.log(ServiceExtAbility.TAG, 'onCreate:' + JSON.stringify(want));
38 LogUtils.log(ServiceExtAbility.TAG, `onRequest, want: ${want.abilityName}`);
46 LogUtils.log(ServiceExtAbility.TAG, `onConnect , want: ${want.abilityName}`);
57 LogUtils.info(ServiceExtAbility.TAG, 'stopSelf length ' + this.startIdArray.length);
61 LogUtils.info(ServiceExtAbility.TAG, 'stopSelf');
63 LogUtils.error(ServiceExtAbility.TAG, 'stopSelf err is ' + JSON.stringify(err));
/base/usb/usb_manager/frameworks/dialog/functionswitch_ui/usb_function_dialog/src/main/ets/util/
DUsbServiceSwitch.ets19 const TAG: string = 'usbfunctionswitchwindow_UsbServiceSwitch';
33 Logger.info(TAG, `choose ${chooseId}, current ${this.curFunc}`);
35 Logger.error(TAG, 'undefined, error');
44 Logger.info(TAG, 'choose: charge only');
47 Logger.info(TAG, 'choose: xfer file(MTP)');
50 Logger.info(TAG, 'choose: xfer pic(PTP)');
52 Logger.info(TAG, 'choose error');
55 …Logger.info(TAG, `setFunctions: current ${JSON.stringify(this.curFunc)}, target ${JSON.stringify(t…
57 Logger.info(TAG, `setCurrentFunctions success: ${JSON.stringify(data)}`);
59 Logger.error(TAG, `setCurrentFunctions failed:${JSON.stringify(err)}`);
DNotificationUtil.ets23 const TAG: string = 'usbfunctionswitchwindow_NotificationUtil';
56 Logger.info(TAG, 'enableNotification success');
58 Logger.error(TAG, `enableNotification err ${JSON.stringify(err)}`);
72 Logger.info(TAG, `Succeeded in publish. Data ${JSON.stringify(data)}`);
74 Logger.error(TAG, `Failed to publish. Cause: ${JSON.stringify(err)}`);
79 Logger.info(TAG, `current notify ${currentChoose}`);
124 Logger.info(TAG, `publishNotificationWithWantAgent done ${notifyId}`);
126 Logger.error(TAG, `publishNotificationWithWantAgent error = ${JSON.stringify(error)}`);
136 Logger.info(TAG, 'cancel notification success');
139 Logger.error(TAG, `=cancel notification err ${JSON.stringify(err)}`);
[all …]
/base/telephony/telephony_data/entry/src/main/ets/Application/
DTelephonyDataAbilityStage.ts19 const TAG = "TelephonyDataAbilityStage"; constant
23 LogUtils.i(TAG, "onCreate")
27 LogUtils.i(TAG, "onDestroy")
/base/usb/usb_manager/frameworks/dialog/functionswitch_ui/usb_function_dialog/src/main/ets/MainAbility/
DMainAbility.ets19 const TAG: string = 'usbfunctionswitchwindow_MainAbility';
23 …Logger.info(TAG, `onCreate want ${JSON.stringify(want)} launchParam=${JSON.stringify(launchParam)}…
31 Logger.info(TAG, 'onWindowStageCreate');
34 Logger.error(TAG, `Failed to load the content. Cause: ${JSON.stringify(err)}`);
37 Logger.info(TAG, `Succeeded in loading the content. Data: ${JSON.stringify(data)}`);
44 Logger.info(TAG, 'onForeground');
50 Logger.info(TAG, 'onBackground');
55 Logger.info(TAG, 'onDestroy');
61 Logger.info(TAG, 'onWindowStageDestroy');
/base/notification/distributed_notification_service/services/dialog_ui/enable_notification_dialog/entry/src/main/ets/ServiceExtAbility/
DNotificationServiceExtAbility.ts20 const TAG = 'NotificationDialog_Service'; constant
26 console.debug(TAG, 'onCreate, want: ' + JSON.stringify(want));
29 console.info(TAG, 'click waiting for a response');
60 console.info(TAG, 'onDestroy.');
64 console.info(TAG, 'create window');
91 console.error(TAG, 'window create failed!');
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/utils/
Dlog.ts18 const TAG = 'Settings_FaceAuth'; constant
24 hilog.info(IAM_DOMAIN_ID_FACE, TAG + ":" + tag, content,);
28 hilog.error(IAM_DOMAIN_ID_FACE, TAG + ":" + tag, content,);
/base/usb/usb_manager/frameworks/dialog/functionswitch_ui/usb_function_dialog/src/main/ets/ServiceExtAbility/
DUsbFunctionSwitchWindowAbility.ets23 const TAG: string = 'usbfunctionswitchwindow_ServiceExtensionAbility';
43 Logger.info(TAG, `onCreate want: ${JSON.stringify(want)}`);
55 Logger.info(TAG, `onRequest want=${JSON.stringify(want)} startId=${startId}`);
67 …Logger.error(TAG, `Failed to obtain the default display object. Code: ${JSON.stringify(exception)}…
74 Logger.info(TAG, `onConnect want=${JSON.stringify(want)}`);
80 Logger.info(TAG, `onDisconnect want=${JSON.stringify(want)}`);
89 Logger.info(TAG, 'onDestroy');
95 Logger.error(TAG, `Failed to destroy the window. Cause: ${JSON.stringify(err)}`);
98 Logger.info(TAG, 'Succeeded in destroy the window');
108 Logger.info(TAG, 'destroy first power window');
[all …]
/base/hiviewdfx/hitrace/test/unittest/hitrace_meter/
Dhitrace_ndk_test.cpp70 const uint64_t TAG = HITRACE_TAG_OHOS; variable
113 string value = to_string(TAG); in SetUp()
443 StartTrace(TAG, "HitraceStartTrace001");
444 FinishTrace(TAG);
464 StartTrace(TAG, "StartHiTraceIdTest001");
465 FinishTrace(TAG);
492 StartTrace(TAG, longTraceName, SLEEP_ONE_SECOND);
493 FinishTrace(TAG);
514 StartAsyncTrace(TAG, "StartAsyncHiTraceIdTest001", 123);
515 FinishAsyncTrace(TAG, "StartAsyncHiTraceIdTest001", 123);
[all …]
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/pages/
DentryView.ets27 private readonly TAG: string = "Index"
34 BackComponent({ prevTag: this.TAG })
70 Log.info(this.TAG, 'receive system bar tint change: ' + JSON.stringify(data));
75 Log.info(this.TAG, "set status bar height " + regionData.region.height)
80 Log.info(this.TAG, "set navigation bar height " + this.SYSTEM_NAVIGATION_BAR_HEIGHT)
85 Log.info(this.TAG, "new display area :" + JSON.stringify(newArea))
87 Log.info(this.TAG, "total area w: " + newArea.width + " h: " + newArea.height)
92 Log.info(this.TAG, 'onBackPress+')
94 Log.info(this.TAG, 'onBackPress-')
/base/useriam/face_auth/ui/Settings_FaceAuth/entry/src/main/ets/Application/
DAbilityStage.ts20 private readonly TAG: string = 'MyAbilityStage:'; property in MyAbilityStage
22 Log.info(this.TAG, 'onCreate')
/base/update/update_app/feature/ota/src/main/ets/notify/
DNotificationManager.ts29 const TAG = 'NotificationManager'; constant
56 LogUtils.log(TAG, 'handleCheckAction');
61 LogUtils.log(TAG, 'handleDetailAction');

12