HomeSort by relevance Sort by last modified time
    Searched refs:strncpy (Results 1 - 25 of 1050) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/atom/string/
ssse3-strncpy-atom.S 32 #define STRCPY strncpy
  /bionic/libc/arch-x86/silvermont/string/
sse2-strncpy-slm.S 32 #define STRCPY strncpy
  /bionic/libc/arch-x86_64/string/
sse2-strncpy-slm.S 32 #define STRCPY strncpy
  /bionic/libc/upstream-openbsd/lib/libc/string/
strncpy.c 1 /* $OpenBSD: strncpy.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
42 strncpy(char *dst, const char *src, size_t n) function
59 DEF_STRONG(strncpy); variable
  /external/curl/tests/libtest/
sethostname.c 34 strncpy(name, force_hostname, namelen);
  /external/syslinux/com32/lib/
strncat.c 9 strncpy(strchr(dst, '\0'), src, n);
strncpy.c 2 * strncpy.c
4 * strncpy()
9 char *strncpy(char *dst, const char *src, size_t n) function
  /toolchain/binutils/binutils-2.27/libiberty/
stpncpy.c 39 extern char *strncpy (char *, const char *, size_t);
47 return strncpy (dst, src, len) + n;
  /device/google/contexthub/firmware/lib/libc/
strncpy.c 1 /* $OpenBSD: strncpy.c,v 1.7 2014/06/10 04:17:37 deraadt Exp $ */
42 strncpy(char *dst, const char *src, size_t n) function
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
charbuf.h 43 #define zzcr_attr(a,tok,t) strncpy((a)->text, t, D_TextSize-1); \
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
charbuf.h 43 #define zzcr_attr(a,tok,t) strncpy((a)->text, t, D_TextSize-1); \
  /external/compiler-rt/test/asan/TestCases/
strncpy-overflow.cc 16 strncpy(short_buffer, hello, 10); // BOOM
18 // CHECK-Linux: {{ #0 0x.* in .*strncpy}}
20 // CHECK: {{ #1 0x.* in main .*strncpy-overflow.cc:}}[[@LINE-4]]
25 // CHECK-Linux: {{ #1 0x.* in main .*strncpy-overflow.cc:}}[[@LINE-10]]
28 // CHECK-Darwin: {{ #1 0x.* in main .*strncpy-overflow.cc:}}[[@LINE-13]]
  /external/compiler-rt/test/esan/TestCases/
libc-intercept.c 10 strncpy(Buf, Str, 17);
  /art/runtime/verifier/
instruction_flags.cc 27 strncpy(encoding, "XXXXXXX", sizeof(encoding));
29 strncpy(encoding, "-------", sizeof(encoding));
  /external/valgrind/memcheck/tests/
overlap.c 44 strncpy(x+20, x, 20); // ok
45 strncpy(x+20, x, 21); // overlap
46 strncpy(x, x+20, 20); // ok
47 strncpy(x, x+20, 21); // overlap
65 /* testing strcpy, strncpy() */
74 strncpy(b, a, 25);
78 strncpy(b, a, 26);
82 strncpy(b, a, 27);
115 /* This is ok, but once gave a warning when strncpy() was wrong,
121 strncpy( dest, src, 20 )
    [all...]
overlap.stderr.exp 9 Source and destination overlap in strncpy(0x........, 0x........, 21)
10 at 0x........: strncpy (vg_replace_strmem.c:...)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
14 at 0x........: strncpy (vg_replace_strmem.c:...)
  /external/mesa3d/src/gallium/targets/d3dadapter9/
description.c 242 strncpy(drvid->Description, fallback_name, sizeof(drvid->Description));
251 strncpy(drvid->Driver, "igdumd32.dll", sizeof(drvid->Driver));
256 strncpy(drvid->Driver, "vm3dum.dll", sizeof(drvid->Driver));
261 strncpy(drvid->Driver, "atiumdag.dll", sizeof(drvid->Driver));
266 strncpy(drvid->Driver, "nvd3dum.dll", sizeof(drvid->Driver));
280 strncpy(drvid->Description, cards_intel[i].d3d9name, sizeof(drvid->Description));
286 strncpy(drvid->Description, cards_intel[0].d3d9name, sizeof(drvid->Description));
291 strncpy(drvid->Description, cards_vmware[i].d3d9name, sizeof(drvid->Description));
297 strncpy(drvid->Description, cards_vmware[0].d3d9name, sizeof(drvid->Description));
302 strncpy(drvid->Description, cards_amd[i].d3d9name, sizeof(drvid->Description))
    [all...]
  /external/webrtc/webrtc/modules/audio_device/dummy/
file_audio_device_factory.cc 41 strncpy(_inputAudioFilename, inputAudioFilename, MAX_FILENAME_LEN);
42 strncpy(_outputAudioFilename, outputAudioFilename, MAX_FILENAME_LEN);
  /bionic/libc/bionic/
getdomainname.cpp 47 strncpy(name, uts.domainname, len);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostname.c 87 strncpy (name, pHost, namelen);
  /system/chre/apps/chqts/src/shared/
nano_string.h 31 char *strncpy(char *dest, const char *src, size_t len);
  /external/python/cpython2/Modules/
getpath.c 210 strncpy(buffer+n, stuff, k);
257 strncpy(prefix, home, MAXPATHLEN);
296 strncpy(prefix, PREFIX, MAXPATHLEN);
320 strncpy(exec_prefix, delim+1, MAXPATHLEN);
322 strncpy(exec_prefix, home, MAXPATHLEN);
365 strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
393 strncpy(progpath, prog, MAXPATHLEN);
395 strncpy(argv0_path, prog, MAXPATHLEN);
455 strncpy(progpath, prog, MAXPATHLEN);
478 strncpy(progpath, path, len)
    [all...]
  /external/android-clat/
mtu.c 40 strncpy(if_mtu.ifr_name, ifname, IFNAMSIZ);
  /external/curl/lib/
curl_gethostname.c 69 strncpy(name, force_hostname, namelen);
  /external/flac/include/share/
safe_str.h 32 /* Safe string handling functions to replace things like strcpy, strncpy,
63 ret = strncpy(dest, src, dest_size);

Completed in 1363 milliseconds

1 2 3 4 5 6 7 8 91011>>