/foundation/communication/ipc/services/dbinder/dbinder_service/include/ |
H A D | dbinder_log.h | 22 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, OHOS::LOG_ID_RPC_COMMON, LOG_TAG }; variable 24 #define DBINDER_LOGF(LOG_LABEL, fmt, args...) \ 25 HILOG_IMPL(LOG_CORE, LOG_FATAL, LOG_LABEL.domain, LOG_LABEL.tag, \ 27 #define DBINDER_LOGE(LOG_LABEL, fmt, args...) \ 28 HILOG_IMPL(LOG_CORE, LOG_ERROR, LOG_LABEL.domain, LOG_LABEL.tag, \ 30 #define DBINDER_LOGW(LOG_LABEL, fmt, args...) \ 31 HILOG_IMPL(LOG_CORE, LOG_WARN, LOG_LABEL.domain, LOG_LABEL [all...] |
/foundation/communication/ipc/services/dbinder/test/distributedtest/src/ |
H A D | dbinder_test_service.cpp | 33 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_TEST, "DbinderTest" }; member 47 DBINDER_LOGI(LOG_LABEL, "DBinderTestService finish"); in ~DBinderTestService() 55 DBINDER_LOGI(LOG_LABEL, "enter %{public}s", __func__); in Instantiate() 58 DBINDER_LOGE(LOG_LABEL, "%{public}s:fail to instantiate", __func__); in Instantiate() 69 DBINDER_LOGE(LOG_LABEL, "%{public}s: add TestService result=%{public}d", __func__, result); in Instantiate() 76 DBINDER_LOGI(LOG_LABEL, "enter %{public}s", __func__); in ReverseInt() 78 DBINDER_LOGI(LOG_LABEL, "%{public}s:read from client data = %{public}d", __func__, data); in ReverseInt() 84 DBINDER_LOGI(LOG_LABEL, "enter %{public}s", __func__); in ReverseIntDelay() 86 DBINDER_LOGI(LOG_LABEL, "%{public}s:read from client data = %{public}d", __func__, data); in ReverseIntDelay() 92 DBINDER_LOGI(LOG_LABEL, "ente in Delay() [all...] |
H A D | dbinder_test_service_skeleton.cpp | 32 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_TEST, "DBinderTestServiceProxy" }; member 43 DBINDER_LOGE(LOG_LABEL, "data = %{public}d", data); in ReverseInt() 48 DBINDER_LOGE(LOG_LABEL, "fail to write parcel"); in ReverseInt() 54 DBINDER_LOGE(LOG_LABEL, "rep = %{public}d, error = %{public}d", rep, error); in ReverseInt() 66 DBINDER_LOGE(LOG_LABEL, "rep = %{public}" PRIu64 ", error = %{public}d", rep, error); in GetChildId() 78 DBINDER_LOGE(LOG_LABEL, "fail to write parcel"); in TransProxyObject() 93 DBINDER_LOGE(LOG_LABEL, "fail to write parcel"); in TransProxyObjectRefCount() 98 DBINDER_LOGE(LOG_LABEL, "fail to send proxy object"); in TransProxyObjectRefCount() 112 DBINDER_LOGE(LOG_LABEL, "fail to write parcel"); in TransProxyObjectAgain() 128 DBINDER_LOGE(LOG_LABEL, "fai in TransStubObject() [all...] |
H A D | dbinder_service_test_helper.cpp | 33 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_TEST, "DbinderTestHelper" }; variable 58 DBINDER_LOGI(LOG_LABEL, "sprintf_s fail"); in GetPidByName() 71 DBINDER_LOGI(LOG_LABEL, "sscanf fail"); in GetPidByName() 76 DBINDER_LOGI(LOG_LABEL, "sscanf fail"); in GetPidByName() 89 DBINDER_LOGI(LOG_LABEL, "current pid %{public}d", current); in GetChildPids() 109 DBINDER_LOGI(LOG_LABEL, "child pid %{public}d", child); in GetChildPids() 125 DBINDER_LOGI(LOG_LABEL, "test.service is already started, do nothing"); in StartExecutable() 131 DBINDER_LOGI(LOG_LABEL, "%{public}s res = %d, errno = %{public}d", cmd1.c_str(), res, errno); in StartExecutable() 135 DBINDER_LOGI(LOG_LABEL, "%{public}s res = %{public}d", cmd2.c_str(), res); in StartExecutable() 143 DBINDER_LOGI(LOG_LABEL, "StartExecutabl in StartExecutable() [all...] |
H A D | dbinder_test_agent.cpp | 31 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_TEST, "DbinderTestAgent" }; variable 54 DBINDER_LOGE(LOG_LABEL, "Get local node device info failed"); in DbinderTestAgent() 65 DBINDER_LOGI(LOG_LABEL, "enter SetUp"); in SetUp() 72 DBINDER_LOGI(LOG_LABEL, "enter TearDown"); in TearDown() 95 DBINDER_LOGI(LOG_LABEL, "enter OnProcessCmd"); in OnProcessCmd() 97 DBINDER_LOGI(LOG_LABEL, "strCommand = %{public}s, strArgs = %{public}s", strCommand.c_str(), strArgs.c_str()); in OnProcessCmd() 100 DBINDER_LOGI(LOG_LABEL, "strCommand = %{public}s, strArgs = %{public}s", strCommand.c_str(), strArgs.c_str()); in OnProcessCmd() 111 DBINDER_LOGI(LOG_LABEL, "enter KillService"); in KillService() 117 DBINDER_LOGI(LOG_LABEL, "enter RestartService"); in RestartService() 129 DBINDER_LOGE(LOG_LABEL, "Ini in main() [all...] |
/foundation/communication/ipc/ipc/native/src/core/include/ |
H A D | ipc_debug.h | 25 #define ZLOGF(LOG_LABEL, fmt, args...) \ 26 HILOG_IMPL(LOG_CORE, LOG_FATAL, LOG_LABEL.domain, LOG_LABEL.tag, \ 28 #define ZLOGE(LOG_LABEL, fmt, args...) \ 29 HILOG_IMPL(LOG_CORE, LOG_ERROR, LOG_LABEL.domain, LOG_LABEL.tag, \ 31 #define ZLOGW(LOG_LABEL, fmt, args...) \ 32 HILOG_IMPL(LOG_CORE, LOG_WARN, LOG_LABEL.domain, LOG_LABEL.tag, \ 34 #define ZLOGI(LOG_LABEL, fm [all...] |
/foundation/communication/ipc/ipc/native/src/mock/include/ |
H A D | dbinder_base_invoker_object.h | 28 ZLOGE(LOG_LABEL, "send an wrong stub object");
in TranslateBinderType() 49 ZLOGE(LOG_LABEL, "IPCProcessSkeleton is nullptr");
in TranslateHandleType() 59 ZLOGE(LOG_LABEL, "send an wrong dbinder object");
in TranslateHandleType() 83 ZLOGE(LOG_LABEL, "send a wrong dbinder object");
in TranslateRemoteHandleType() 95 ZLOGI(LOG_LABEL, "create new handle:%{public}u", handle);
in TranslateRemoteHandleType() 97 ZLOGE(LOG_LABEL, "failed to create new handle");
in TranslateRemoteHandleType() 130 ZLOGE(LOG_LABEL, "send an wrong stub object");
in IRemoteObjectTranslateWhenSend() 139 ZLOGE(LOG_LABEL, "send an wrong dbinder object");
in IRemoteObjectTranslateWhenSend() 151 ZLOGE(LOG_LABEL, "do not support this type:%{public}u of translation", binderObject->hdr.type);
in IRemoteObjectTranslateWhenSend() 177 ZLOGE(LOG_LABEL, "receiv in IRemoteObjectTranslateWhenRcv() [all...] |
H A D | dbinder_base_invoker_process.h | 29 ZLOGE(LOG_LABEL, "IPCProcessSkeleton is nullptr");
in ProcessTransaction() 36 ZLOGE(LOG_LABEL, "DBinderSendAllocator failed, listenFd:%{public}d", listenFd);
in ProcessTransaction() 41 ZLOGE(LOG_LABEL, "SetAllocator failed, listenFd:%{public}d", listenFd);
in ProcessTransaction() 61 ZLOGE(LOG_LABEL, "check and set caller info failed, cmd:%{public}u listenFd:%{public}d", tr->code, listenFd);
in ProcessTransaction() 74 ZLOGE(LOG_LABEL, "stubIndex is invalid, listenFd:%{public}d seq:%{public}" PRIu64,
in ProcessTransaction() 81 ZLOGE(LOG_LABEL, "translate object failed, listenFd:%{public}d seq:%{public}" PRIu64,
in ProcessTransaction() 94 ZLOGW(LOG_LABEL, "stub sendrequest failed, cmd:%{public}u error:%{public}d "
in ProcessTransaction() 101 ZLOGW(LOG_LABEL, "delete raw data in process skeleton, listenFd:%{public}d seq:%{public}" PRIu64,
in ProcessTransaction() 124 ZLOGE(LOG_LABEL, "IPCProcessSkeleton is nullptr, can not wakeup thread");
in ProcessReply() 132 ZLOGW(LOG_LABEL, "quer in ProcessReply() [all...] |
/foundation/communication/ipc/ipc/native/src/mock/source/ |
H A D | dbinder_databus_invoker.cpp | 47 ZLOGI(LOG_LABEL, "handle:%{public}d", handle); in AcquireHandle() 53 ZLOGI(LOG_LABEL, "handle:%{public}d", handle); in ReleaseHandle() 61 ZLOGE(LOG_LABEL, "remote session is nullptr"); in NewSessionOfBinderProxy() 68 ZLOGE(LOG_LABEL, "IPCProcessSkeleton is nullptr"); in NewSessionOfBinderProxy() 74 ZLOGE(LOG_LABEL, "attempt to send a invalid handle:%{public}u", handle); in NewSessionOfBinderProxy() 80 ZLOGE(LOG_LABEL, "attempt to send a distributed proxy, handle:%{public}u", handle); in NewSessionOfBinderProxy() 87 ZLOGE(LOG_LABEL, "get localDeviceID error, handle:%{public}u", handle); in NewSessionOfBinderProxy() 99 ZLOGE(LOG_LABEL, "get bus name error, handle:%{public}u", handle); in GetSessionForProxy() 109 ZLOGE(LOG_LABEL, "write to parcel fail, handle:%{public}u", handle); in GetSessionForProxy() 115 ZLOGE(LOG_LABEL, "star in GetSessionForProxy() [all...] |
/foundation/communication/ipc/services/dbinder/dbinder_service/src/ |
H A D | dbinder_death_recipient.cpp | 22 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_RPC_DBINDER_SER, "DbinderDeathRecipient" }; member 26 DBINDER_LOGE(LOG_LABEL, "DbinderDeathRecipient OnRemoteDied"); in OnRemoteDied() 28 DBINDER_LOGE(LOG_LABEL, "remote object is null"); in OnRemoteDied() 34 DBINDER_LOGE(LOG_LABEL, "Remote object is null"); in OnRemoteDied() 41 DBINDER_LOGE(LOG_LABEL, "dBinderService is null"); in OnRemoteDied() 52 DBINDER_LOGE(LOG_LABEL, "detaching death recipient is failed"); in OnRemoteDied() 57 DBINDER_LOGE(LOG_LABEL, "detaching callback proxy is failed"); in OnRemoteDied()
|
H A D | dbinder_service_stub.cpp | 32 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_RPC_DBINDER_SER_STUB, member 39 DBINDER_LOGD(LOG_LABEL, "created, service:%{public}s device:%{public}s", in DBinderServiceStub() 43 DBINDER_LOGW(LOG_LABEL, "malloc dbinderData_ fail"); in DBinderServiceStub() 51 DBINDER_LOGD(LOG_LABEL, "destroyed, service:%{public}s device:%{public}s", in ~DBinderServiceStub() 76 DBINDER_LOGE(LOG_LABEL, "DBinderService is nullptr"); in ProcessProto() 82 DBINDER_LOGE(LOG_LABEL, "client find session is null"); in ProcessProto() 87 DBINDER_LOGI(LOG_LABEL, "serviceName:%{public}s stubIndex:%{public}" PRIu64 " tokenId:%{public}u", in ProcessProto() 93 DBINDER_LOGE(LOG_LABEL, "uid or pid err"); in ProcessProto() 100 DBINDER_LOGE(LOG_LABEL, "local busname nil"); in ProcessProto() 111 DBINDER_LOGE(LOG_LABEL, "writ in ProcessProto() [all...] |
/foundation/communication/ipc/ipc/native/src/napi_common/source/ |
H A D | napi_message_sequence_write.cpp | 34 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_NAPI, "NAPI_MessageSequenceWrite" }; member 52 ZLOGD(LOG_LABEL, "NAPI_MessageSequence::Destructor"); in ~NAPI_MessageSequence() 59 ZLOGD(LOG_LABEL, "message parcel is created by others, do nothing"); in release() 99 ZLOGE(LOG_LABEL, "requires 1 parameter"); in JS_writeByte() 106 ZLOGE(LOG_LABEL, "type mismatch for parameter 1"); in JS_writeByte() 116 ZLOGE(LOG_LABEL, "napiSequence is null"); in JS_writeByte() 122 ZLOGE(LOG_LABEL, "write int8 failed"); in JS_writeByte() 137 ZLOGE(LOG_LABEL, "requires 1 parameter"); in JS_writeShort() 144 ZLOGE(LOG_LABEL, "type mismatch for parameter 1"); in JS_writeShort() 154 ZLOGE(LOG_LABEL, "napiSequenc in JS_writeShort() [all...] |
H A D | napi_remote_proxy_holder.cpp | 25 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_NAPI, "NapiRemoteProxyHolder" };
member 37 ZLOGE(LOG_LABEL, "work or work->data is nullptr");
in AfterWorkCallback() 40 ZLOGD(LOG_LABEL, "start to call onRemoteDied");
in AfterWorkCallback() 54 ZLOGE(LOG_LABEL, "failed to get js death recipient");
in AfterWorkCallback() 62 ZLOGE(LOG_LABEL, "failed to get property onRemoteDied");
in AfterWorkCallback() 70 ZLOGE(LOG_LABEL, "failed to call function onRemoteDied");
in AfterWorkCallback() 75 ZLOGE(LOG_LABEL, "failed to delete ref to js death recipient");
in AfterWorkCallback() 85 ZLOGE(LOG_LABEL, "js death recipient has already removed");
in OnRemoteDied() 90 ZLOGE(LOG_LABEL, "js env has been destructed");
in OnRemoteDied() 97 ZLOGE(LOG_LABEL, "loo in OnRemoteDied() [all...] |
H A D | napi_remote_object_holder.cpp | 24 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_NAPI, "napi_remoteObject_holder" };
member 29 ZLOGE(LOG_LABEL, "data is null");
in OnEnvCleanUp() 49 ZLOGE(LOG_LABEL, "add cleanup hook failed");
in NAPIRemoteObjectHolder() 59 ZLOGE(LOG_LABEL, "failed to new work");
in DeleteJsObjectRefInUvWork() 68 ZLOGD(LOG_LABEL, "enter work pool.");
in DeleteJsObjectRefInUvWork() 75 ZLOGE(LOG_LABEL, "failed to delete ref on uv work");
in DeleteJsObjectRefInUvWork() 82 ZLOGE(LOG_LABEL, "uv_queue_work failed, ret %{public}d", uvRet);
in DeleteJsObjectRefInUvWork() 89 ZLOGE(LOG_LABEL, "js env has been destructed");
in ~NAPIRemoteObjectHolder() 95 ZLOGE(LOG_LABEL, "remove cleanup hook failed");
in ~NAPIRemoteObjectHolder() 101 ZLOGE(LOG_LABEL, "faile in ~NAPIRemoteObjectHolder() [all...] |
/foundation/communication/connected_nfc_tag/interfaces/inner_api/include/ |
H A D | log.h | 51 #ifdef LOG_LABEL
52 #undef LOG_LABEL
macro 55 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = {LOG_CORE, NFC_LOG_DOMAIN, NFC_LOG_TAG};
variable 61 LOG_LABEL, "[%{public}s(%{public}s:%{public}d)]" fmt, FILENAME__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
64 LOG_LABEL, "[%{public}s(%{public}s:%{public}d)]" fmt, FILENAME__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
67 LOG_LABEL, "[%{public}s(%{public}s:%{public}d)]" fmt, FILENAME__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
70 LOG_LABEL, "[%{public}s(%{public}s:%{public}d)]" fmt, FILENAME__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
73 LOG_LABEL, "[%{public}s(%{public}s:%{public}d)]" fmt, FILENAME__, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
/foundation/communication/ipc/ipc/native/src/core/source/ |
H A D | message_parcel.cpp | 51 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_PARCEL, "MessageParcel" }; member 77 ZLOGE(LOG_LABEL, "binder object type is invalid."); in AcquireObject() 133 ZLOGE(LOG_LABEL, "current is nullptr"); in WriteDBinderProxy() 138 ZLOGE(LOG_LABEL, "sessionOfPeer is null, handle:%{public}u stubIndex:%{public}" PRIu64, handle, stubIndex); in WriteDBinderProxy() 153 ZLOGE(LOG_LABEL, "create DBinderCallbackStub object failed"); in WriteDBinderProxy() 157 ZLOGE(LOG_LABEL, "save callback of fake stub failed"); in WriteDBinderProxy() 174 ZLOGE(LOG_LABEL, "update obj offset:%{public}zu fail, ptr offset:%{public}zu", objOffset, offset); in UpdateDBinderDataOffset() 177 ZLOGI(LOG_LABEL, "update obj offset:%{public}zu, ptr offset:%{public}zu", objOffset, offset); in UpdateDBinderDataOffset() 202 ZLOGI(LOG_LABEL, "send a dbinder proxy to another process in this device"); in WriteRemoteObject() 244 ZLOGE(LOG_LABEL, "invali in WriteFileDescriptor() [all...] |
H A D | ipc_workthread.cpp | 41 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_COMMON, "IPCWorkThread" }; member 91 ZLOGE(LOG_LABEL, "invalid policy:%{public}d", policy); in JoinThread() 102 ZLOGE(LOG_LABEL, "get ProcessSkeleton object failed"); in ThreadHandler() 107 ZLOGW(LOG_LABEL, "the stop flag is true, thread start exit"); in ThreadHandler() 121 ZLOGE(LOG_LABEL, "set thread name:%{public}s fail, ret:%{public}d", threadName.c_str(), ret); in ThreadHandler() 123 ZLOGI(LOG_LABEL, "proto:%{public}d policy:%{public}d name:%{public}s invoker:%{public}u", in ThreadHandler() 134 ZLOGI(LOG_LABEL, "exit, proto:%{public}d policy:%{public}d name:%{public}s invoker:%{public}u", in ThreadHandler() 152 ZLOGE(LOG_LABEL, "get ProcessSkeleton object failed"); in Start() 157 ZLOGW(LOG_LABEL, "the stop flag is true, can not create other thread"); in Start() 163 ZLOGE(LOG_LABEL, "creat in Start() [all...] |
H A D | dbinder_callback_stub.cpp | 32 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_RPC_DBINDER_CB_STUB, member 45 ZLOGD(LOG_LABEL, "created, service:%{public}s deviceId:%{public}s handle:%{public}u stubIndex:%{public}" PRIu64, in DBinderCallbackStub() 49 ZLOGE(LOG_LABEL, "malloc dbinderData_ fail"); in DBinderCallbackStub() 57 ZLOGD(LOG_LABEL, "destroyed, service:%{public}s deviceId:%{public}s handle:%{public}u stubIndex:%{public}" PRIu64, in ~DBinderCallbackStub() 89 ZLOGE(LOG_LABEL, "uid or pid err"); in ProcessProto() 95 ZLOGE(LOG_LABEL, "get sa object is null"); in ProcessProto() 102 ZLOGE(LOG_LABEL, "grans session name failed"); in ProcessProto() 117 ZLOGE(LOG_LABEL, "write to MessageParcel fail"); in ProcessData() 123 ZLOGE(LOG_LABEL, "no databus thread and invoker"); in ProcessData() 129 ZLOGE(LOG_LABEL, "sen in ProcessData() [all...] |
H A D | dbinder_softbus_client.cpp | 26 static constexpr HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_DBINDER_SOFTBUS_CLIENT, "DBinderSoftbusClient"}; member 47 ZLOGI(LOG_LABEL, "destroy"); in ~DBinderSoftbusClient() 61 ZLOGE(LOG_LABEL, "dlopen %{public}s failed, err msg:%{public}s", SOFTBUS_PATH_NAME, dlerror()); in OpenSoftbusClientSo() 66 ZLOGI(LOG_LABEL, "dlopen %{public}s SOFTBUS_CLIENT_SUCCESS", SOFTBUS_PATH_NAME); in OpenSoftbusClientSo() 84 ZLOGE(LOG_LABEL, "dlsym DBinderGrantPermission fail, err msg:%{public}s", dlerror()); in DBinderGrantPermission() 104 ZLOGE(LOG_LABEL, "dlsym DBinderRemovePermission fail, err msg:%{public}s", dlerror()); in DBinderRemovePermission() 117 ZLOGE(LOG_LABEL, "Get local node device info failed"); in GetLocalNodeDeviceId() 130 ZLOGE(LOG_LABEL, "dlsym GetLocalNodeDeviceInfo fail, err msg:%{public}s", dlerror()); in GetLocalNodeDeviceId() 135 ZLOGE(LOG_LABEL, "Get local node device info failed"); in GetLocalNodeDeviceId() 155 ZLOGE(LOG_LABEL, "dlsy in Socket() [all...] |
H A D | ipc_thread_skeleton.cpp | 45 static constexpr HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_THREAD_SKELETON, "IPCThreadSkeleton" }; member 57 ZLOGE(LOG_LABEL, "current is nullptr"); in TlsDestructor() 63 ZLOGF(LOG_LABEL, "memory may be damaged, ret:%{public}u", ret); in TlsDestructor() 80 ZLOGE(LOG_LABEL, "pthread_key_create fail, ret:%{public}d", ret); in MakeTlsKey() 83 ZLOGD(LOG_LABEL, "key:%{public}d", TLSKey_); in MakeTlsKey() 89 ZLOGE(LOG_LABEL, "instance is null"); in GetVaildInstance() 96 ZLOGE(LOG_LABEL, "TLS mismatch, curTid:%{public}d tlsTid:%{public}d, " in GetVaildInstance() 138 ZLOGD(LOG_LABEL, "%{public}u", ProcessSkeleton::ConvertAddr(this)); in IPCThreadSkeleton() 143 ZLOGW(LOG_LABEL, "get thread name fail, tid:%{public}d ret:%{public}d", tid_, ret); in IPCThreadSkeleton() 155 ZLOGI(LOG_LABEL, " in ~IPCThreadSkeleton() [all...] |
H A D | process_skeleton.cpp | 29 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_IPC_COMMON, "ProcessSkeleton" }; member 50 ZLOGE(LOG_LABEL, "create ProcessSkeleton object failed"); in GetInstance() 60 ZLOGI(LOG_LABEL, "enter"); in ~ProcessSkeleton() 128 ZLOGD(LOG_LABEL, "not found, desc:%{public}s maybe has been updated", in DetachObject() 138 ZLOGI(LOG_LABEL, "can not erase it because addr if different, " in DetachObject() 146 ZLOGD(LOG_LABEL, "erase desc:%{public}s", ConvertToSecureDesc(Str16ToStr8(descriptor)).c_str()); in DetachObject() 160 ZLOGE(LOG_LABEL, "descriptor is null %{public}u", ConvertAddr(object)); in AttachObject() 169 ZLOGW(LOG_LABEL, "ipc proxy num:%{public}" PRIu64 " exceeds limit:%{public}" PRIu64, in AttachObject() 175 ZLOGD(LOG_LABEL, "attach %{public}u desc:%{public}s type:%{public}s", in AttachObject() 184 ZLOGE(LOG_LABEL, "descripto in QueryObject() [all...] |
/foundation/communication/ipc/services/dbinder/dbinder_service/src/socket/ |
H A D | dbinder_remote_listener.cpp | 27 static constexpr OHOS::HiviewDFX::HiLogLabel LOG_LABEL = { LOG_CORE, LOG_ID_RPC_REMOTE_LISTENER, member 32 DBINDER_LOGI(LOG_LABEL, "create dbinder remote listener"); in DBinderRemoteListener() 47 DBINDER_LOGI(LOG_LABEL, "delete dbinder remote listener"); in ~DBinderRemoteListener() 52 DBINDER_LOGI(LOG_LABEL, "socketId:%{public}d, peerNetworkId:%{public}s, peerName:%{public}s", in ServerOnBind() 61 DBINDER_LOGI(LOG_LABEL, "socketId:%{public}d, ShutdownReason:%{public}d", socket, reason); in ServerOnShutdown() 66 DBINDER_LOGI(LOG_LABEL, "Shutdown end"); in ServerOnShutdown() 79 DBINDER_LOGI(LOG_LABEL, "socketId:%{public}d, ShutdownReason:%{public}d", socket, reason); in ClientOnShutdown() 86 DBINDER_LOGI(LOG_LABEL, "erase socket:%{public}d", socket); in ClientOnShutdown() 96 DBINDER_LOGI(LOG_LABEL, "Shutdown end"); in ClientOnShutdown() 101 DBINDER_LOGI(LOG_LABEL, "socketI in OnBytesReceived() [all...] |
/foundation/systemabilitymgr/safwk/interfaces/innerkits/safwk/rust/src/ |
H A D | hilog.rs | 21 use $crate::LOG_LABEL; 25 hilog_rust::debug!(LOG_LABEL,"{}",@public(log)); 33 use $crate::LOG_LABEL; 37 hilog_rust::info!(LOG_LABEL,"{}",@public(log)); 45 use $crate::LOG_LABEL; 49 hilog_rust::error!(LOG_LABEL,"{}",@public(log));
|
/foundation/systemabilitymgr/samgr/interfaces/innerkits/rust/src/ |
H A D | hilog.rs | 20 use $crate::LOG_LABEL; 24 hilog_rust::debug!(LOG_LABEL,"{}",@public(log)); 32 use $crate::LOG_LABEL; 36 hilog_rust::info!(LOG_LABEL,"{}",@public(log)); 44 use $crate::LOG_LABEL; 48 hilog_rust::error!(LOG_LABEL,"{}",@public(log));
|
/foundation/communication/ipc/interfaces/innerkits/rust/src/ |
H A D | hilog.rs | 20 use $crate::LOG_LABEL; 24 hilog_rust::debug!(LOG_LABEL,"{}",@public(log)); 32 use $crate::LOG_LABEL; 36 hilog_rust::info!(LOG_LABEL,"{}",@public(log)); 44 use $crate::LOG_LABEL; 48 hilog_rust::error!(LOG_LABEL,"{}",@public(log));
|