| /OK3568_Linux_fs/kernel/Documentation/sphinx/ |
| H A D | load_config.py | 19 config_file = os.environ.get("SPHINX_CONF", None) 20 if (config_file is not None 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 22 config_file = os.path.abspath(config_file) 25 start = config_file.find('Documentation/') 27 start = config_file.find('/', start + 1) 29 end = config_file.rfind('/') 31 dir = config_file[start + 1:end] 47 if os.path.isfile(config_file): 48 sys.stdout.write("load additional sphinx-config: %s\n" % config_file) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/ |
| H A D | __init__.py | 65 config_file = d.getVar("IPKGCONF_TARGET") 68 self.opkg_args = "-f %s -o %s " % (config_file, rootfs_dir) 161 …def __init__(self, d, target_rootfs, config_file, archs, task_name='target', ipk_repo_workdir="oe-… argument 164 self.config_file = config_file 171 …self.opkg_args = "--volatile-cache -f %s -t %s -o %s " % (self.config_file, self.d.expand('${T}/ip… 223 with open(self.config_file, "w+") as config_file: 226 config_file.write("arch %s %d\n" % (arch, priority)) 238 config_file.write("src/gz %s %s\n" % (feed_name, feed_uri)) 272 with open(self.config_file, "w+") as config_file: 275 config_file.write("arch %s %d\n" % (arch, priority)) [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_parser_demo/demo/ |
| H A D | rkisp_parse.cpp | 18 char config_file[CALIBDB_PATH_LEN]; in main() local 20 strcpy(config_file, argv[1]); in main() 21 RkAiqCalibDb::createCalibDbBinFromXml(config_file); in main()
|
| /OK3568_Linux_fs/kernel/scripts/dtc/ |
| H A D | dt_to_config | 402 } elsif (($config_file) && ($configs =~ /CONFIG_/)) { 464 if ($config_file) { 945 if (! -r $config_file) { 946 print STDERR "file '$config_file' is not readable or does not exist\n"; 950 if (!open(CONFIG_FILE, "<", "$config_file")) { 951 print STDERR "open $config_file failed\n"; 989 "c=s" => \$config_file, 990 "config=s" => \$config_file, 1168 if ($config_file) {
|
| /OK3568_Linux_fs/buildroot/support/testing/infra/ |
| H A D | builder.py | 46 config_file = os.path.join(self.builddir, ".config") 47 with open(config_file, "w+") as cf: 67 if not self.is_defconfig_valid(config_file, self.config):
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI/ |
| H A D | rk_aiq_user_api_sysctl.cpp | 348 char config_file[256]; in rk_aiq_uapi_sysctl_init() local 370 sprintf(config_file, "%s/%s.json", config_file_dir, sns_ent_name); in rk_aiq_uapi_sysctl_init() 372 sprintf(config_file, "%s/%s.json", RKAIQ_DEFAULT_IQ_PATH, sns_ent_name); in rk_aiq_uapi_sysctl_init() 488 sprintf(config_file, "%s/%s", config_file_dir, it->second.force_iq_file.c_str()); in rk_aiq_uapi_sysctl_init() 489 LOGI("use user sepcified iq file %s", config_file); in rk_aiq_uapi_sysctl_init() 527 sprintf(config_file, "%s/%s", config_file_dir, iq_file); in rk_aiq_uapi_sysctl_init() 529 sprintf(config_file, "%s/%s", RKAIQ_DEFAULT_IQ_PATH, iq_file); in rk_aiq_uapi_sysctl_init() 533 if (hdr_mode && access(config_file, F_OK)) { in rk_aiq_uapi_sysctl_init() 534 LOGW("%s not exist, will use the default !", config_file); in rk_aiq_uapi_sysctl_init() 536 start = strlen(config_file) - strlen("-hdr3.json"); in rk_aiq_uapi_sysctl_init() [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | devtool | 37 config_file = '' variable in ConfigHandler 43 self.config_file = filename 57 if os.path.exists(self.config_file): 58 self.config_obj.read(self.config_file) 74 logger.debug('writing to config file %s' % self.config_file) 76 with open(self.config_file, 'w') as f:
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | diffconfig | 40 def readconfig(config_file): argument 42 for line in config_file:
|
| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | diffconfig | 44 def readconfig(config_file): argument 46 for line in config_file:
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | diffconfig | 40 def readconfig(config_file): argument 42 for line in config_file:
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/ |
| H A D | streamline_config.pl | 125 my @config_file = read_config; 426 foreach my $line (@config_file) { 616 foreach my $line (@config_file) {
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | streamline_config.pl | 127 my @config_file = read_config; 426 foreach my $line (@config_file) { 599 foreach my $line (@config_file) {
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | streamline_config.pl | 126 my @config_file = read_config; 425 foreach my $line (@config_file) { 598 foreach my $line (@config_file) {
|
| /OK3568_Linux_fs/u-boot/tools/env/ |
| H A D | fw_env_main.c | 127 env_opts.config_file = CONFIG_FILE; in parse_common_args() 142 env_opts.config_file = optarg; in parse_common_args()
|
| H A D | fw_env.h | 20 char *config_file; member
|
| /OK3568_Linux_fs/kernel/drivers/s390/char/ |
| H A D | sclp_sd.c | 96 static struct sclp_sd_file *config_file; variable 556 config_file = sclp_sd_file_create("config", SD_DI_CONFIG); in sclp_sd_init() 557 if (!config_file) in sclp_sd_init()
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/ |
| H A D | 0016-backend-drm-Support-controlling-output-dynamically.patch | 548 + const char *config_file; 553 + config_file = getenv("WESTON_DRM_CONFIG"); 554 + if (!config_file) 555 + config_file = WESTON_DRM_CONFIG_FILE; 557 + if (stat(config_file, &st) < 0) 563 + conf_fp = fopen(config_file, "r"); 581 + stat(config_file, &st);
|
| /OK3568_Linux_fs/buildroot/package/weston/ |
| H A D | 0019-backend-drm-Support-controlling-output-dynamically.patch | 549 + const char *config_file; 554 + config_file = getenv("WESTON_DRM_CONFIG"); 555 + if (!config_file) 556 + config_file = WESTON_DRM_CONFIG_FILE; 558 + if (stat(config_file, &st) < 0) 564 + conf_fp = fopen(config_file, "r"); 582 + stat(config_file, &st);
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/ |
| H A D | 0019-backend-drm-Support-controlling-output-dynamically.patch | 549 + const char *config_file; 554 + config_file = getenv("WESTON_DRM_CONFIG"); 555 + if (!config_file) 556 + config_file = WESTON_DRM_CONFIG_FILE; 558 + if (stat(config_file, &st) < 0) 564 + conf_fp = fopen(config_file, "r"); 582 + stat(config_file, &st);
|
| /OK3568_Linux_fs/external/rkwifibt/tools/rtk_hciattach/ |
| H A D | rtb_fwc.h | 77 char *config_file; member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-wpa-supplicant/ |
| H A D | 0001-cli-drop-the-second-argument-from-click.argument-dec.patch | 46 @click.option('--config_file', default=None, help='Config file path') 47 @@ -161,7 +161,7 @@ def create_interface(ifname, bridge_if_name, driver, config_file):
|
| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | buildman | 63 bsettings.Setup(options.config_file)
|
| H A D | buildman.py | 63 bsettings.Setup(options.config_file)
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | config.c | 39 static FILE *config_file; variable 53 if ((f = config_file) != NULL) { in get_next_char() 499 config_file = f; in perf_config_from_file()
|
| /OK3568_Linux_fs/buildroot/package/oracle-mysql/ |
| H A D | 0009-gcc7.patch | 32 Options::Main::config_file);
|