Home
last modified time | relevance | path

Searched refs:errno (Results 151 - 175 of 757) sorted by relevance

12345678910>>...31

/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/class_stream/
H A Dstream_n_exporter.cpp70 UniError(errno).ThrowErr(env); in ReadSync()
76 UniError(errno).ThrowErr(env); in ReadSync()
129 UniError(errno).ThrowErr(env); in WriteSync()
135 UniError(errno).ThrowErr(env); in WriteSync()
182 UniError(errno).ThrowErr(env); in Write()
183 return UniError(errno); in Write()
187 return UniError(errno); in Write()
252 UniError(errno).ThrowErr(env); in Read()
253 return UniError(errno); in Read()
257 return UniError(errno); in Read()
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/
H A Dpan_network.cpp53 __FUNCTION__, PAN_DEVICE_PATH, fd_, errno); in Open()
321 } while ((ret = write(fd_, packet, len + sizeof(head))) == -1 && errno == EINTR); in WriteData()
323 int rtn = errno; in WriteData()
324 LOG_ERROR("[Pan Network]%{public}s(): Cannot write to :%{public}s", __FUNCTION__, strerror(errno)); in WriteData()
339 LOG_ERROR("[Pan Network]%{public}s():pthread_create : %{public}s", __FUNCTION__, strerror(errno)); in CreateThread()
374 } while ((ret = poll(pfds, 1, POLL_TIMEOUT)) == -1 && errno == EINTR); in PollEventThread_()
377 strerror(errno)); in PollEventThread_()
395 strerror(errno)); in SetPanNetworkNonBlocking()
403 strerror(errno)); in SetPanNetworkNonBlocking()
413 } while ((packetSize = read(fd_, &packet, sizeof(packet))) == -1 && errno in ReadPanNetworkEvent()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_operator.cpp147 LOG_D(BMS_TAG_INSTALLD, "stat fail %{public}d", errno); in IsExistFile()
446 LOG_E(BMS_TAG_INSTALLD, "fail to stat errno:%{public}d", errno); in ExtractTargetHnpFile()
453 LOG_E(BMS_TAG_INSTALLD, "ChangeModeFile %{public}s failed, errno: %{public}d", path.c_str(), errno); in ExtractTargetHnpFile()
533 LOG_E(BMS_TAG_INSTALLD, "fail to stat errno:%{public}d", errno); in ExtractTargetFile()
540 LOG_E(BMS_TAG_INSTALLD, "ChangeModeFile %{public}s failed, errno: %{public}d", path.c_str(), errno); in ExtractTargetFile()
628 LOG_E(BMS_TAG_INSTALLD, "fail to access file errno in RenameDir()
[all...]
/foundation/multimodalinput/input/service/delegate_task/src/
H A Ddelegate_tasks.cpp63 MMI_HILOGE("The pipe create failed, errno:%{public}d", errno); in Init()
67 MMI_HILOGE("The fcntl read failed, errno:%{public}d", errno); in Init()
72 MMI_HILOGE("The fcntl write failed, errno:%{public}d", errno); in Init()
160 MMI_HILOGE("Pipe write failed, errno:%{public}d", errno); in PostTask()
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/
H A Dstat_v9.cpp75 UniError(errno, true).ThrowErr(env); in Sync()
80 UniError(errno, true).ThrowErr(env); in Sync()
119 return UniError(errno, true); in Async()
123 return UniError(errno, true); in Async()
H A Drmdirent.cpp47 return UniError(errno); in rmdirent()
60 return UniError(errno); in rmdirent()
71 return UniError(errno); in rmdirent()
78 return UniError(errno); in rmdirent()
H A Dtruncate_v9.cpp75 UniError(errno, true).ThrowErr(env); in Sync()
80 UniError(errno, true).ThrowErr(env); in Sync()
109 return UniError(errno, true); in Async()
113 return UniError(errno, true); in Async()
H A Dcopy_file.cpp51 return UniError(errno); in CopyFileCore()
58 return UniError(errno); in CopyFileCore()
64 return UniError(errno); in CopyFileCore()
73 return UniError(errno); in CopyFileCore()
79 return UniError(errno); in CopyFileCore()
/foundation/communication/dsoftbus/components/nstackx/nstackx_congestion/platform/unix/qdisc/
H A Dnstackx_nlmsg.c18 #include <errno.h>
94 LOGE(TAG, "ret %d errno %d", ret, errno); in SendNetlinkRequest()
144 LOGE(TAG, "2 recvlen %d netlink receive error %s (%d)", recvLen, strerror(errno), errno); in RecvNetlinkResponse()
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/unix/
H A Dsys_event.c76 LOGE(TAG, "failed to write to pipe: %d", errno); in PostEvent()
116 LOGE(TAG, "create pipe error: %d", errno); in CreateNonBlockPipe()
123 LOGE(TAG, "fcntl get flags failed: %d", errno); in CreateNonBlockPipe()
131 LOGE(TAG, "fcntl set flags to non-blocking failed: %d", errno); in CreateNonBlockPipe()
/foundation/graphic/graphic_utils_lite/frameworks/
H A Dgraphic_timer.cpp91 GRAPHIC_LOGE("Timer create failed.(err=%s)", strerror(errno)); in GraphicTimer()
224 GRAPHIC_LOGE("Timer create failed.(err=%s)", strerror(errno)); in GraphicTimer()
234 GRAPHIC_LOGE("Timer delete failed.(err=%s)", strerror(errno)); in ~GraphicTimer()
257 GRAPHIC_LOGE("Timer start failed.(timerid=%d, err=%s)", timer_, strerror(errno)); in Start()
272 GRAPHIC_LOGE("Timer stop failed.(timerid=%d, err=%s)", timer_, strerror(errno)); in Stop()
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/utils/
H A Dhgm_one_shot_timer.cpp99 if (result && errno != EINTR) { in Loop()
100 HGM_LOGE("HgmOneShotTimer::sem_wait failed (%{public}s)", std::to_string(errno).c_str()); in Loop()
117 if (result && errno != ETIMEDOUT && errno != EINTR) { in Loop()
118 HGM_LOGE("HgmOneShotTimer::sem_timedwait failed (%{public}s)", std::to_string(errno).c_str()); in Loop()
/foundation/graphic/graphic_2d/utils/socketpair/src/
H A Dlocal_socketpair.cpp97 ScopedBytrace func("Create socketpair failed, errno = " + std::to_string(errno)); in CreateChannel()
107 ScopedBytrace func2("Create socketpair failed for the second time, errno = " + std::to_string(errno)); in CreateChannel()
143 int errnoRecord = errno; in SendData()
144 ScopedBytrace func("SocketPair SendData failed, errno = " + std::to_string(errnoRecord) + in SendData()
167 } while (errno == EINTR); in ReceiveData()
169 ScopedBytrace func("SocketPair ReceiveData failed errno = " + std::to_string(errno) + in ReceiveData()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_inotify.cpp78 errno); in WatchCallBack()
119 MEDIA_ERR_LOG("rm watch fd: %{public}d, fail: %{public}d", iter->first, errno); in Restart()
142 MEDIA_ERR_LOG("rm watch fd: %{public}d, fail: %{public}d", iter->first, errno); in DoStop()
174 MEDIA_ERR_LOG("rm watch fd:%{public}d fail:%{public}d", wd, errno); in Remove()
185 MEDIA_ERR_LOG("add AddWatchList fail fd: %{public}d, error: %{public}d", inotifyFd_, errno); in Init()
/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/utils/
H A Dfile_utils.cpp48 MEDIA_ERR_LOG("DeleteFile fail, ret: %{public}d, errno: %{public}d", ret, errno); in DeleteFile()
67 MEDIA_ERR_LOG("fd.Get() < 0 fd %{public}d errno: %{public}d", fd, errno); in SaveImage()
75 MEDIA_ERR_LOG("write fail, ret: %{public}d, errno: %{public}d", ret, errno); in SaveImage()
82 MEDIA_ERR_LOG("rename fail, ret: %{public}d, errno: %{public}d", ret, errno); in SaveImage()
175 "Failed to delete temp filters file, errno: %{public}d", errno); in DealPicture() local
[all...]
/foundation/multimedia/media_library/frameworks/services/media_scanner/src/scanner/
H A Dmedia_scanner_manager.cpp53 MEDIA_ERR_LOG("failed to get real path %{private}s, errno %{public}d", path.c_str(), errno); in ScanFile()
76 MEDIA_ERR_LOG("failed to get real path %{private}s, errno %{public}d", path.c_str(), errno); in ScanFileSync()
102 MEDIA_ERR_LOG("failed to get real path %{private}s, errno %{public}d", path.c_str(), errno); in ScanFileSyncWithoutAlbumUpdate()
128 MEDIA_ERR_LOG("failed to get real path %{private}s, errno %{public}d", path.c_str(), errno); in ScanDir()
151 MEDIA_ERR_LOG("failed to get real path %{private}s, errno %{public}d", path.c_str(), errno); in ScanDirSync()
[all...]
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/utils/
H A Dressched_utils.cpp78 CGS_LOGD("%{public}s load %{public}s failed! errno:%{public}d", __func__, RES_SCHED_CG_EXT_SO.c_str(), errno); in LoadUtilsExtra()
89 CGS_LOGD("%{public}s load function:ReportArbitrationResult failed! errno:%{public}d", __func__, errno); in LoadUtilsExtra()
100 CGS_LOGD("%{public}s load function:DispatchResourceExt failed! errno:%{public}d", __func__, errno); in LoadUtilsExtra()
111 CGS_LOGD("%{public}s load function:ReportSysEvent failed! errno:%{public}d", __func__, errno); in LoadUtilsExtra()
122 CGS_LOGD("%{public}s load function:SubscribeResourceExtFunc failed! errno:%{public}d", __func__, errno); in LoadUtilsExtra()
[all...]
/foundation/distributeddatamgr/kv_store/databaseutils/src/
H A Dacl.cpp155 } else if (errno == ENODATA) { in AclFromDefault()
159 ZLOGW("getxattr failed. error %{public}s path %{public}s", std::strerror(errno), path_.c_str()); in AclFromDefault()
181 ZLOGE("Failed to generate ACL from file's mode: %{public}s", std::strerror(errno)); in SetDefault()
189 ZLOGE("Failed to serialize ACL into binary: %{public}s", std::strerror(errno)); in SetDefault()
193 ZLOGE("Failed to write into file's xattr: %{public}s", std::strerror(errno)); in SetDefault()
/foundation/filemanagement/app_file_service/utils/src/b_hiaudit/
H A Dhi_audit.cpp79 HILOGE("Init, open error, logFilePath is:%{public}s, errno:%{public}d", logFilePath.c_str(), errno); in Init()
148 HILOGE("GetWriteFilePath, Open fd error, errno:%{public}d", errno); in GetWriteFilePath()
163 HILOGE("open dir error, errno:%{public}d", errno); in CleanOldAuditFile()
227 if (ret != 0 || errno != 0 || errno != EEXIST) { in MkLogDirSuccess()
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/linux/
H A Dreactor_linux.c69 LOG_ERROR("ReatorCreate: epoll create failed, error no: %{public}d.", errno); in ReactorCreate()
75 LOG_ERROR("ReatorCreate: eventfd failed, error no: %{public}d.", errno); in ReactorCreate()
84 LOG_ERROR("ReatorCreate: epoll_ctl ADD-Option failed, error no: %{public}d.", errno); in ReactorCreate()
135 LOG_ERROR("ReactorStart: epoll_wait failed, error no: %{public}d.", errno); in ReactorStart()
229 LOG_ERROR("ReactorUnregister: epoll_ctl delete-option failed, error no: %{public}d.", errno); in ReactorUnregister()
/foundation/communication/netmanager_ext/services/mdnsmanager/src/
H A Dmdns_socket_listener.cpp130 NETMGR_EXT_LOG_E("mdns_log bind failed, errno:[%{public}d]", errno); in InitSocketV4()
181 NETMGR_EXT_LOG_E("mdns_log bind failed, errno:[%{public}d]", errno); in InitSocketV6()
193 NETMGR_EXT_LOG_F("mdns_log bind failed, errno:[%{public}d]", errno); in MDnsSocketListener()
261 NETMGR_EXT_LOG_F("mdns_log getifaddrs failed, errno=[%{public}d]", errno); in OpenSocketForEachIface()
296 NETMGR_EXT_LOG_E("mdns_log socket create failed, errno:[%{public}d]", errno); in OpenSocketV4()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_service.cpp19 #include <errno.h>
99 APP_LOGE("create path failed, errno : %{public}d", errno); in InitDir()
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/include/
H A Dvsync_log.h62 #define VLOG_ERROR(errno, fmt, ...) \
63 VLOGE(fmt ", means %{public}s", ##__VA_ARGS__, strerror(errno))
/foundation/filemanagement/app_file_service/interfaces/common/src/
H A Djson_utils.cpp30 LOGE("Open json file path %{public}s failed with error %{public}d", jsonPath.c_str(), errno); in GetJsonObjFromPath()
31 return -errno; in GetJsonObjFromPath()
/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A DreaderIterator_impl.cpp31 HILOGE("Failed to get next line, error:%{public}d", errno); in Next()
32 return {GetErrorCode(errno), entity_->offset == 0, nullptr}; in Next()

Completed in 13 milliseconds

12345678910>>...31