| /OK3568_Linux_fs/kernel/tools/lib/subcmd/ |
| H A D | exec-cmd.c | 86 const char *slash; in extract_argv0_path() local 90 slash = argv0 + strlen(argv0); in extract_argv0_path() 92 while (argv0 <= slash && !is_dir_sep(*slash)) in extract_argv0_path() 93 slash--; in extract_argv0_path() 95 if (slash >= argv0) { in extract_argv0_path() 96 argv0_path = strndup(argv0, slash - argv0); in extract_argv0_path() 97 return argv0_path ? slash + 1 : NULL; in extract_argv0_path()
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/librtmp/ |
| H A D | parseurl.c | 36 char *p, *end, *col, *ques, *slash; in RTMP_ParseURL() local 93 slash = strchr(p, '/'); in RTMP_ParseURL() 97 if(slash) in RTMP_ParseURL() 98 hostlen = slash - p; in RTMP_ParseURL() 127 if(!slash) { in RTMP_ParseURL() 131 p = slash+1; in RTMP_ParseURL()
|
| /OK3568_Linux_fs/kernel/arch/um/drivers/ |
| H A D | cow_user.c | 148 char save_cwd[256], *slash; in absolutize() local 156 slash = strrchr(from, '/'); in absolutize() 157 if (slash != NULL) { in absolutize() 158 *slash = '\0'; in absolutize() 160 *slash = '/'; in absolutize() 165 *slash = '/'; in absolutize() 172 if (strlen(slash) + 1 > remaining) { in absolutize() 177 strcat(to, slash); in absolutize()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeotilefetcher_nokia.cpp | 132 static const QChar slash('/'); in getRequestString() local 144 requestString += slash; in getRequestString() 146 requestString += slash; in getRequestString() 148 requestString += slash; in getRequestString() 150 requestString += slash; in getRequestString()
|
| /OK3568_Linux_fs/kernel/init/ |
| H A D | do_mounts.c | 116 char *slash; in devt_from_partuuid() local 120 slash = strchr(uuid_str, '/'); in devt_from_partuuid() 122 if (slash) { in devt_from_partuuid() 125 if (sscanf(slash + 1, in devt_from_partuuid() 130 cmp.len = slash - uuid_str; in devt_from_partuuid()
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | srcpos.c | 39 const char *slash = strrchr(path, '/'); in get_dirname() local 41 if (slash) { in get_dirname() 42 int len = slash - path; in get_dirname()
|
| /OK3568_Linux_fs/buildroot/package/cpio/ |
| H A D | 0002-Rewrite-dynamic-string-support.patch | 146 /* Make sure the name ends with a slash */ 185 char *slash; /* For moving past slashes in input name. */ 220 for (slash = input_name.ds_string; *slash == '/'; ++slash) 222 - ds_resize (&output_name, dirname_len + strlen (slash) + 2); 223 - strcpy (output_name.ds_string + dirname_len + 1, slash); 225 + ds_concat (&output_name, slash);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/ |
| H A D | 0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch | 8 where the path ends with a trailing slash currently fails. This occurs in 25 + # Strip any trailing slash from the destination.
|
| H A D | fixinstall.patch | 30 # Strip any trailing slash from the destination.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/cpio/cpio-2.13/ |
| H A D | CVE-2021-38185.patch | 150 /* Make sure the name ends with a slash */ 189 char *slash; /* For moving past slashes in input name. */ 224 for (slash = input_name.ds_string; *slash == '/'; ++slash) 226 - ds_resize (&output_name, dirname_len + strlen (slash) + 2); 227 - strcpy (output_name.ds_string + dirname_len + 1, slash); 229 + ds_concat (&output_name, slash);
|
| /OK3568_Linux_fs/kernel/scripts/dtc/ |
| H A D | srcpos.c | 28 const char *slash = strrchr(path, '/'); in get_dirname() local 30 if (slash) { in get_dirname() 31 int len = slash - path; in get_dirname()
|
| /OK3568_Linux_fs/kernel/kernel/trace/ |
| H A D | trace_probe.c | 232 const char *slash, *event = *pevent; in traceprobe_parse_event_name() local 235 slash = strchr(event, '/'); in traceprobe_parse_event_name() 236 if (slash) { in traceprobe_parse_event_name() 237 if (slash == event) { in traceprobe_parse_event_name() 241 if (slash - event + 1 > MAX_EVENT_NAME_LEN) { in traceprobe_parse_event_name() 245 strlcpy(buf, event, slash - event + 1); in traceprobe_parse_event_name() 251 *pevent = slash + 1; in traceprobe_parse_event_name() 252 offset += slash - event + 1; in traceprobe_parse_event_name()
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | pxe.c | 727 char *f1, *f2, *f3, *f4, *slash; in label_boot() local 750 slash = "./"; in label_boot() 752 slash = "/"; in label_boot() 754 slash = ""; in label_boot() 756 len = strlen(label->fdtdir) + strlen(slash) + in label_boot() 766 label->fdtdir, slash, f1, f2, f3, f4); in label_boot()
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | confdata.c | 752 char *slash; in conf_write() local 758 } else if ((slash = strrchr(name, '/'))) { in conf_write() 759 int size = slash - name + 1; in conf_write() 762 if (slash[1]) in conf_write() 763 basename = slash + 1; in conf_write()
|
| /OK3568_Linux_fs/buildroot/package/lcdproc/ |
| H A D | 0001-LCDd.conf.patch | 13 # NOTE: Always place a slash as last character !
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | confdata.c | 756 char *slash; in conf_write() local 762 } else if ((slash = strrchr(name, '/'))) { in conf_write() 763 int size = slash - name + 1; in conf_write() 766 if (slash[1]) in conf_write() 767 basename = slash + 1; in conf_write()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | build-id.c | 559 bool slash = is_kallsyms || is_vdso; in build_id_cache__cachedir() local 561 if (!slash) { in build_id_cache__cachedir() 567 if (asprintf(&filename, "%s%s%s%s%s", buildid_dir, slash ? "/" : "", in build_id_cache__cachedir() 572 if (!slash) in build_id_cache__cachedir()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/webm/libvpx/ |
| H A D | libvpx-configure-support-blank-prefix.patch | 35 + # Strip trailing slash
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/ |
| H A D | MAINTAINERS | 19 A trailing slash includes all files and subdirectory files.
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/ |
| H A D | tftp-0.42-tftpboot.patch | 54 @@ -30,5 +30,5 @@ rg \\ / # Convert backslashes to slash
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/vboxguestdrivers/ |
| H A D | vboxguestdrivers_6.1.34.bb | 48 …_DIR must be a kernel build folder and end with /build without a trailing slash, or KERN_VER must …
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/charmaps/ |
| H A D | ISO_8859-1,GL.gz | ... -stop> \d046 FULL STOP DIS 10646
82<slash> \d047 SOLIDUS
83<solidus> \d047 SOLIDUS DIS ... |
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/charmaps/ |
| H A D | ISO_8859-1,GL.gz | ... -stop> \d046 FULL STOP DIS 10646
82<slash> \d047 SOLIDUS
83<solidus> \d047 SOLIDUS DIS ... |
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | fdtdec.c | 525 const char *slash; in fdtdec_get_alias_seq() local 534 slash = strrchr(prop, '/'); in fdtdec_get_alias_seq() 535 if (strcmp(slash + 1, find_name)) in fdtdec_get_alias_seq()
|
| /OK3568_Linux_fs/buildroot/toolchain/ |
| H A D | helpers.mk | 499 for slash in `seq 1 $${nbslashs}` ; do \
|