| /OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/testdir/ |
| H A D | large.txt | 944 access("/etc/gtk-2.0/gtkrc.en_US", F_OK) = -1 ENOENT (No such file or directory) 945 access("/etc/gtk-2.0/gtkrc.en", F_OK) = -1 ENOENT (No such file or directory) 962 access("/usr/local/lib/gtk-2.0/2.10.0/i686-suse-linux-gnu/engines/libqtcurve.so", F_OK) = -1 ENOENT… 963 access("/usr/local/lib/gtk-2.0/2.10.0/i686-suse-linux-gnu/engines/libqtcurve.la", F_OK) = -1 ENOENT… 964 access("/usr/local/lib/gtk-2.0/2.10.0/engines/libqtcurve.so", F_OK) = -1 ENOENT (No such file or di… 965 access("/usr/local/lib/gtk-2.0/2.10.0/engines/libqtcurve.la", F_OK) = -1 ENOENT (No such file or di… 966 access("/usr/local/lib/gtk-2.0/i686-suse-linux-gnu/engines/libqtcurve.so", F_OK) = -1 ENOENT (No su… 967 access("/usr/local/lib/gtk-2.0/i686-suse-linux-gnu/engines/libqtcurve.la", F_OK) = -1 ENOENT (No su… 968 access("/usr/local/lib/gtk-2.0/engines/libqtcurve.so", F_OK) = -1 ENOENT (No such file or directory) 969 access("/usr/local/lib/gtk-2.0/engines/libqtcurve.la", F_OK) = -1 ENOENT (No such file or directory) [all …]
|
| /OK3568_Linux_fs/external/mpp/osal/ |
| H A D | mpp_runtime.cpp | 87 allocator_valid[MPP_BUFFER_TYPE_ION] = !access("/dev/ion", F_OK | R_OK | W_OK); in MppRuntimeService() 88 allocator_valid[MPP_BUFFER_TYPE_DRM] = !access("/dev/dri/card0", F_OK | R_OK | W_OK); in MppRuntimeService() 89 allocator_valid[MPP_BUFFER_TYPE_DMA_HEAP] = !access("/dev/dma_heap", F_OK | R_OK); in MppRuntimeService() 113 if (!access("/dev/mpp_service", F_OK | R_OK | W_OK)) { in MppRuntimeService() 138 int f_ok = access(path, F_OK); in MppRuntimeService() 141 f_ok = access(path, F_OK); in MppRuntimeService()
|
| H A D | mpp_platform.cpp | 34 if (access(kernel_version_path, F_OK | R_OK)) in check_kernel_version() 166 if (!access("/dev/rga", F_OK)) in mpp_get_2d_hw_flag() 169 if (!access("/dev/iep", F_OK)) in mpp_get_2d_hw_flag()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd/ |
| H A D | 0012-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch | 14 (currently) all systemd callers of laccess() pass mode as F_OK, so 51 + of laccess() pass mode as F_OK, so only check for existence of a file, not 75 - if (faccessat(fd, table[i].dir, F_OK, AT_SYMLINK_NOFOLLOW) >= 0) 76 + if (faccessat(fd, table[i].dir, F_OK, 0) >= 0) 84 - if (faccessat(fd, s, F_OK, AT_SYMLINK_NOFOLLOW) < 0) 85 + if (faccessat(fd, s, F_OK, 0) < 0) 93 - if (faccessat(fd, p, F_OK, AT_SYMLINK_NOFOLLOW) < 0) 94 + if (faccessat(fd, p, F_OK, 0) < 0)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0012-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch | 14 (currently) all systemd callers of laccess() pass mode as F_OK, so 49 + of laccess() pass mode as F_OK, so only check for existence of a file, not 71 - if (faccessat(fd, table[i].dir, F_OK, AT_SYMLINK_NOFOLLOW) >= 0) 72 + if (faccessat(fd, table[i].dir, F_OK, 0) >= 0) 80 - if (faccessat(fd, s, F_OK, AT_SYMLINK_NOFOLLOW) < 0) 81 + if (faccessat(fd, s, F_OK, 0) < 0) 89 - if (faccessat(fd, p, F_OK, AT_SYMLINK_NOFOLLOW) < 0) 90 + if (faccessat(fd, p, F_OK, 0) < 0)
|
| /OK3568_Linux_fs/external/recovery/ |
| H A D | recovery.c | 720 if (ret == 0 && access(fw_package, F_OK) == 0) { in ui_update() 733 if (access(fw_package, F_OK) == 0) in ui_update() 901 if ((access("/.rkdebug", F_OK) != 0) && (isrkdebug != true)) { in main() 920 while (access(coldboot_done, F_OK) != 0) { in main() 943 if (access(imageFile, F_OK) == 0) { in main() 956 if (access(imageFile, F_OK) == 0) { in main() 1057 if (access(update_package, F_OK) == 0) in main() 1086 if ((access(FACTORY_FIRMWARE_IMAGE, F_OK)) && access(CMD4RECOVERY_FILENAME, F_OK)) { in main() 1108 … if ((!access(FACTORY_FIRMWARE_IMAGE, F_OK)) && mtd_find_partition_by_name("sfc_nor") != NULL) { in main() 1145 if ((access(FACTORY_FIRMWARE_IMAGE, F_OK)) && access(CMD4RECOVERY_FILENAME, F_OK)) { in main() [all …]
|
| H A D | rktools.c | 169 if (access(result_point[SD], F_OK) == 0) in setFlashPoint() 176 if (access(name_t, F_OK) == 0) in setFlashPoint() 215 if ( !access(MTD_PATH, F_OK) ) { in isMtdDevice()
|
| H A D | rkupdate.c | 121 if (access(path_second, F_OK) == 0) { in do_rk_updateEngine() 125 if (access(path_second, F_OK) == 0) { in do_rk_updateEngine()
|
| /OK3568_Linux_fs/app/forlinx/quectelCM/ |
| H A D | device.c | 235 if (access(devname, R_OK | F_OK) && errno == ENOENT) in detect_path_cdc_wdm_or_qcqmi() 312 if (!access(pl->path, F_OK)) { in qmidevice_detect() 314 if (!access(pl->path, F_OK)) { in qmidevice_detect() 388 if (!access("/sys/class/net/pcie_mhi0", F_OK)) in mhidevice_detect() 390 else if (!access("/sys/class/net/rmnet_mhi0", F_OK)) in mhidevice_detect() 397 if (!access("/dev/mhi_MBIM", F_OK)) { in mhidevice_detect() 401 else if (!access("/dev/mhi_QMI0", F_OK)) { in mhidevice_detect() 585 if (access("/sys/module/usbmon", F_OK)) { in ql_capture_usbmon_log() 590 if (access("/sys/kernel/debug/usb", F_OK)) { in ql_capture_usbmon_log()
|
| /OK3568_Linux_fs/external/mpp/mpp/legacy/ |
| H A D | vpu_api.cpp | 301 } else if (!access("/dev/mpp_service", F_OK)) { in vpu_open_context() 304 } else if (!!access("/dev/rkvdec", F_OK)) { in vpu_open_context() 307 (!access("/dev/hevc-service", F_OK) in vpu_open_context() 308 || !access("/dev/hevc_service", F_OK))) { in vpu_open_context()
|
| /OK3568_Linux_fs/kernel/tools/perf/arch/ |
| H A D | common.c | 109 if (access(buf, F_OK) == 0) { in lookup_path() 152 if (access(buf, F_OK) == 0) in perf_env__lookup_binutils_path()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/wifi-test-suite/files/ |
| H A D | 0003-fix-path-to-usr-sbin-for-script-and-make-script-for-.patch | 22 - ret = access("/usr/local/sbin/getipconfig.sh", F_OK); 23 + ret = access("/usr/sbin/getipconfig.sh", F_OK);
|
| /OK3568_Linux_fs/external/rktoolkit/ |
| H A D | update.c | 217 if(access(DATA_UPDATE_FILE,F_OK) == -1){ in rebootUpdate() 220 if(access(SD_UPDATE_FILE,F_OK) == -1){ in rebootUpdate()
|
| /OK3568_Linux_fs/kernel/tools/hv/ |
| H A D | hv_fcopy_daemon.c | 49 if (access((char *)smsg->path_name, F_OK)) { in hv_start_fcopy() 66 if (!access(target_fname, F_OK)) { in hv_start_fcopy()
|
| /OK3568_Linux_fs/external/recovery/update_engine/ |
| H A D | rktools.c | 126 if ( !access(MTD_PATH, F_OK) ) { in isMtdDevice() 183 if ( !access(emmc_point, F_OK) ) { in getFlashPoint()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | build-id.c | 173 if (!access(bf, F_OK)) in build_id_cache__kallsyms_path() 705 if (access(filename, F_OK)) { in build_id_cache__add_s() 732 if (access(filename, F_OK)) { in build_id_cache__add_s() 792 if (filename && !access(filename, F_OK)) in build_id_cache__cached() 812 if (access(linkname, F_OK)) in build_id_cache__remove_s()
|
| H A D | cputopo.c | 102 if (access(filename, F_OK) == -1) { in build_cpu_topology() 168 if (access(filename, F_OK) == -1) in has_die_topology()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/mm/ |
| H A D | prot_sao.c | 28 access("/proc/device-tree/rtas/ibm,hypertas-functions", F_OK) == 0); in test_prot_sao()
|
| /OK3568_Linux_fs/external/mpp/mpp/vproc/ |
| H A D | mpp_vproc_dev.cpp | 45 if (!access(dev_comp[i].compatible, F_OK)) { in get_iep_ctx()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/ |
| H A D | RkAiqCalibDb.cpp | 121 if (0 == access(path, F_OK)) in isDataBinExist() 470 if (0 == access(iqFile, F_OK)) { in createCalibDb() 639 if (0 == access(iqFile, F_OK)) { in createCalibDbBinFromXml() 681 if (0 == access(iqFile, F_OK)) { in parseXmlandWriteXml()
|
| /OK3568_Linux_fs/external/mpp/osal/driver/ |
| H A D | mpp_service.c | 61 if (!access(mpp_service_dev[0], F_OK | R_OK | W_OK)) { in mpp_get_mpp_service_name() 63 } else if (!access(mpp_service_dev[1], F_OK | R_OK | W_OK)) in mpp_get_mpp_service_name() 138 cap->support_cmd = !access("/proc/mpp_service/supports-cmd", F_OK) || in check_mpp_service_cap() 139 !access("/proc/mpp_service/support_cmd", F_OK); in check_mpp_service_cap()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/timens/ |
| H A D | timens.h | 107 if (access("/proc/self/ns/time", F_OK) < 0) in nscheck()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/dscr/ |
| H A D | dscr_sysfs_test.c | 65 if (access(file, F_OK)) in check_all_cpu_dscr_defaults()
|
| /OK3568_Linux_fs/buildroot/package/weston/ |
| H A D | 0077-compositor-Stop-bootanim-after-warm-up.patch | 28 if (!access(getenv("WESTON_FREEZE_DISPLAY") ? : "", F_OK)) {
|
| /OK3568_Linux_fs/external/rk_pcba_test/ |
| H A D | echo_audio_record_test.c | 77 if(0 == access(cmd,F_OK)){ in del_record_pcm()
|