Home
last modified time | relevance | path

Searched refs:CREATE_ERROR (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/jni/
H A Dcom_android_internal_os_ZygoteCommandBuffer.cpp78 fail_fn(CREATE_ERROR("session socket read failed: %s", strerror(errno))); in readLine()
140 fail_fn(CREATE_ERROR("Unreasonable argument count %ld", nArgs)); in getCount()
419 fail_fn_1(CREATE_ERROR("ForkRepeatedly failed to get initial credentials, %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
448 (CREATE_ERROR("Pid write error %d: %s", errno, strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
451 (CREATE_ERROR("Write unexpectedly returned short: %d < 5", res)); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
471 fail_fn_z(CREATE_ERROR("Accept(%d) failed: %s", zygote_socket_fd, strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
477 fail_fn_z(CREATE_ERROR("Failed to move fd %d to %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
485 fail_fn_z(CREATE_ERROR("Failed to set receive timeout for socket %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
489 fail_fn_z(CREATE_ERROR("Failed to set send timeout for socket %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
493 fail_fn_z(CREATE_ERROR("ForkMany failed to get credentials: %s", strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
[all …]
H A Dcom_android_internal_os_Zygote.cpp554 fail_fn(CREATE_ERROR("Getting gids int array failed")); in SetGids()
598 fail_fn(CREATE_ERROR("setrlimit(%d, {%ld, %ld}) failed", in SetRLimits()
689 fail_fn(CREATE_ERROR("capget failed: %s", strerror(errno))); in SetInheritable()
776 fail_fn(CREATE_ERROR("fs_prepare_dir failed on %s: %s", in PrepareDir()
799 fail_fn(CREATE_ERROR("Failed to mount %s to %s: %s", in BindMount()
808 fail_fn(CREATE_ERROR("Failed to mount tmpfs to %s: %s", in MountAppDataTmpFs()
822 fail_fn(CREATE_ERROR("Unknown mount_mode: %d", mount_mode)); in MountEmulatedStorage()
1174 fail_fn(CREATE_ERROR("Failed to opendir %s", path)); in relabelSubdirs()
1421 fail_fn(CREATE_ERROR( in isolateSdkSandboxData()
1574 fail_fn(CREATE_ERROR("Wrong data_info_list size %d", size)); in insertPackagesToMergedList()
[all …]
H A Dcom_android_internal_os_Zygote.h35 #define CREATE_ERROR(...) StringPrintf("%s:%d: ", __FILE__, __LINE__). \ macro