Searched refs:slash (Results 76 - 100 of 166) sorted by relevance

1234567

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2-3.x/ip/
H A Diprule.c281 char *slash; local
284 if ((slash = strchr(*argv, '/')) != NULL)
285 *slash = '\0';
289 if (slash) {
290 if (get_u32(&fwmask, slash+1, 0))
291 invarg("fwmask value is invalid\n", slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2-3.x/ip/
H A Diprule.c281 char *slash; local
284 if ((slash = strchr(*argv, '/')) != NULL)
285 *slash = '\0';
289 if (slash) {
290 if (get_u32(&fwmask, slash+1, 0))
291 invarg("fwmask value is invalid\n", slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2-3.x/ip/
H A Diprule.c281 char *slash; local
284 if ((slash = strchr(*argv, '/')) != NULL)
285 *slash = '\0';
289 if (slash) {
290 if (get_u32(&fwmask, slash+1, 0))
291 invarg("fwmask value is invalid\n", slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2/lib/
H A Dutils.c210 char *slash; local
225 slash = strchr(arg, '/');
226 if (slash)
227 *slash = 0;
242 if (slash) {
243 if (get_unsigned(&plen, slash+1, 0) || plen > dst->bitlen) {
252 if (slash)
253 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iproute2-3.x/lib/
H A Dutils.c313 char *slash; local
328 slash = strchr(arg, '/');
329 if (slash)
330 *slash = 0;
345 if (slash) {
346 if (get_netmask(&plen, slash+1, 0)
356 if (slash)
357 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2/lib/
H A Dutils.c210 char *slash; local
225 slash = strchr(arg, '/');
226 if (slash)
227 *slash = 0;
242 if (slash) {
243 if (get_unsigned(&plen, slash+1, 0) || plen > dst->bitlen) {
252 if (slash)
253 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iproute2-3.x/lib/
H A Dutils.c313 char *slash; local
328 slash = strchr(arg, '/');
329 if (slash)
330 *slash = 0;
345 if (slash) {
346 if (get_netmask(&plen, slash+1, 0)
356 if (slash)
357 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2/lib/
H A Dutils.c210 char *slash; local
225 slash = strchr(arg, '/');
226 if (slash)
227 *slash = 0;
242 if (slash) {
243 if (get_unsigned(&plen, slash+1, 0) || plen > dst->bitlen) {
252 if (slash)
253 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iproute2-3.x/lib/
H A Dutils.c313 char *slash; local
328 slash = strchr(arg, '/');
329 if (slash)
330 *slash = 0;
345 if (slash) {
346 if (get_netmask(&plen, slash+1, 0)
356 if (slash)
357 *slash = '/';
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/src/
H A Durl.c977 The path is split into directory (the part up to the last slash)
978 and file (the part after the last slash), which are subsequently
1094 /* Escape unsafe and reserved characters, except for the slash
1227 retrieve a directory without a slash, e.g.
1765 the path element until the next slash. */
1768 /* Skip the path element, including the slash. */
1776 /* Copy the path element, including the final slash. */
1876 replace everything after (and including) the double slash local
1884 const char *slash;
1887 /* Look for first slash
1905 const char *slash; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/wget/src/
H A Durl.c977 The path is split into directory (the part up to the last slash)
978 and file (the part after the last slash), which are subsequently
1094 /* Escape unsafe and reserved characters, except for the slash
1227 retrieve a directory without a slash, e.g.
1765 the path element until the next slash. */
1768 /* Skip the path element, including the slash. */
1776 /* Copy the path element, including the final slash. */
1876 replace everything after (and including) the double slash local
1884 const char *slash;
1887 /* Look for first slash
1905 const char *slash; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wget/src/
H A Durl.c977 The path is split into directory (the part up to the last slash)
978 and file (the part after the last slash), which are subsequently
1094 /* Escape unsafe and reserved characters, except for the slash
1227 retrieve a directory without a slash, e.g.
1765 the path element until the next slash. */
1768 /* Skip the path element, including the slash. */
1776 /* Copy the path element, including the final slash. */
1876 replace everything after (and including) the double slash local
1884 const char *slash;
1887 /* Look for first slash
1905 const char *slash; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/scripts/kconfig/
H A Dconfdata.c348 char *slash; local
354 } else if ((slash = strrchr(name, '/'))) {
355 int size = slash - name + 1;
358 if (slash[1])
359 basename = slash + 1;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/scripts/kconfig/
H A Dconfdata.c348 char *slash; local
354 } else if ((slash = strrchr(name, '/'))) {
355 int size = slash - name + 1;
358 if (slash[1])
359 basename = slash + 1;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/scripts/kconfig/
H A Dconfdata.c348 char *slash; local
354 } else if ((slash = strrchr(name, '/'))) {
355 int size = slash - name + 1;
358 if (slash[1])
359 basename = slash + 1;
/asuswrt-rt-n18u-9.0.0.4.380.2695/toolchain/scripts/config/
H A Dconfdata.c399 char *slash; local
405 } else if ((slash = strrchr(name, '/'))) {
406 int size = slash - name + 1;
409 if (slash[1])
410 basename = slash + 1;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/networking/udhcp/
H A Dcommon.c546 char *slash = strchr(val, '/'); local
547 if (slash) {
548 *slash = '\0';
550 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/networking/udhcp/
H A Dcommon.c546 char *slash = strchr(val, '/'); local
547 if (slash) {
548 *slash = '\0';
550 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavformat/
H A Dhttp.c229 const char *slash; local
233 if ((slash = strchr(p, '/')) && strlen(slash) > 0)
234 s->filesize = atoll(slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/networking/udhcp/
H A Dcommon.c546 char *slash = strchr(val, '/'); local
547 if (slash) {
548 *slash = '\0';
550 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavformat/
H A Dhttp.c229 const char *slash; local
233 if ((slash = strchr(p, '/')) && strlen(slash) > 0)
234 s->filesize = atoll(slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavformat/
H A Dhttp.c229 const char *slash; local
233 if ((slash = strchr(p, '/')) && strlen(slash) > 0)
234 s->filesize = atoll(slash+1);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/src/
H A Dresponse.c550 char *slash = NULL; local
642 if (slash) {
643 buffer_copy_string_len(con->physical.path, srv->tmp_buf->ptr, slash - srv->tmp_buf->ptr);
656 slash = strrchr(srv->tmp_buf->ptr, '/');
663 if (slash) pathinfo = slash;
664 } while ((found == 0) && (slash != NULL) && ((size_t)(slash - srv->tmp_buf->ptr) > (buffer_string_length(con->physical.basedir) - 1)));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/src/
H A Dresponse.c550 char *slash = NULL; local
642 if (slash) {
643 buffer_copy_string_len(con->physical.path, srv->tmp_buf->ptr, slash - srv->tmp_buf->ptr);
656 slash = strrchr(srv->tmp_buf->ptr, '/');
663 if (slash) pathinfo = slash;
664 } while ((found == 0) && (slash != NULL) && ((size_t)(slash - srv->tmp_buf->ptr) > (buffer_string_length(con->physical.basedir) - 1)));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
H A Dresponse.c550 char *slash = NULL; local
642 if (slash) {
643 buffer_copy_string_len(con->physical.path, srv->tmp_buf->ptr, slash - srv->tmp_buf->ptr);
656 slash = strrchr(srv->tmp_buf->ptr, '/');
663 if (slash) pathinfo = slash;
664 } while ((found == 0) && (slash != NULL) && ((size_t)(slash - srv->tmp_buf->ptr) > (buffer_string_length(con->physical.basedir) - 1)));

Completed in 319 milliseconds

1234567