Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/jni/
H A Dcom_android_internal_os_ZygoteCommandBuffer.cpp77 fail_fn(CREATE_ERROR("session socket read failed: %s", strerror(errno))); in readLine()
139 fail_fn(CREATE_ERROR("Unreasonable argument count %ld", nArgs)); in getCount()
405 fail_fn_1(CREATE_ERROR("ForkMany failed to get initial credentials, %s", strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
433 (CREATE_ERROR("Pid write error %d: %s", errno, strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
436 (CREATE_ERROR("Write unexpectedly returned short: %d < 5", res)); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
456 fail_fn_z(CREATE_ERROR("Accept(%d) failed: %s", zygote_socket_fd, strerror(errno))); in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
462 fail_fn_z(CREATE_ERROR("Failed to move fd %d to %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
470 fail_fn_z(CREATE_ERROR("Failed to set receive timeout for socket %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
474 fail_fn_z(CREATE_ERROR("Failed to set send timeout for socket %d: %s", in com_android_internal_os_ZygoteCommandBuffer_nativeForkRepeatedly()
478 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.cpp542 fail_fn(CREATE_ERROR("Getting gids int array failed")); in SetGids()
556 fail_fn(CREATE_ERROR("Failed to unshare(): %s", strerror(errno))); in ensureInAppMountNamespace()
586 fail_fn(CREATE_ERROR("setrlimit(%d, {%ld, %ld}) failed", in SetRLimits()
677 fail_fn(CREATE_ERROR("capget failed: %s", strerror(errno))); in SetInheritable()
764 fail_fn(CREATE_ERROR("fs_prepare_dir failed on %s: %s", in PrepareDir()
787 fail_fn(CREATE_ERROR("Failed to mount %s to %s: %s", in BindMount()
796 fail_fn(CREATE_ERROR("Failed to mount tmpfs to %s: %s", in MountAppDataTmpFs()
810 fail_fn(CREATE_ERROR("Unknown mount_mode: %d", mount_mode)); in MountEmulatedStorage()
1176 fail_fn(CREATE_ERROR("Failed to opendir %s", path)); in relabelAllDirs()
1388 fail_fn(CREATE_ERROR("Wrong data_info_list size %d", size)); in insertPackagesToMergedList()
[all …]
H A Dcom_android_internal_os_Zygote.h27 #define CREATE_ERROR(...) StringPrintf("%s:%d: ", __FILE__, __LINE__). \ macro