HomeSort by relevance Sort by last modified time
    Searched full:strncpy (Results 101 - 125 of 1246) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/xen/
libutil.a 9 #*;@??FMT\emv?tty_namereallocttyname_rmemchrmalloc__errno_locationfreeloginmemcpygetpidstrncpyutmpnameupdwtmpbasenamesetutentpututlineendutent&C ]
31  ?W?".5DNlogoututmpnamesetutentstrncpygetutline_rmemset__gettimeofdaypututlineendutent# O
39  06? .logwtmpmemsetgetpidstrncpy__gettimeofdayupdwtmp(- a
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libutil.a 9 #*;@??FMT\emv?tty_namereallocttyname_rmemchrmalloc__errno_locationfreeloginmemcpygetpidstrncpyutmpnameupdwtmpbasenamesetutentpututlineendutent&C ]
31  ?W?".5DNlogoututmpnamesetutentstrncpygetutline_rmemset__gettimeofdaypututlineendutent# O
39  06? .logwtmpmemsetgetpidstrncpy__gettimeofdayupdwtmp(- a
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/xen/
libutil.a 9 #*;@??FMT\emv?tty_namereallocttyname_rmemchrmalloc__errno_locationfreeloginmemcpygetpidstrncpyutmpnameupdwtmpbasenamesetutentpututlineendutent&C ]
31  ?W?".5DNlogoututmpnamesetutentstrncpygetutline_rmemset__gettimeofdaypututlineendutent# O
39  06? .logwtmpmemsetgetpidstrncpy__gettimeofdayupdwtmp(- a
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/lib/
libutil.a 14 #*;@?UFMT\emv?tty_namereallocttyname_rmemchrmalloc__errno_locationfreeloginmemcpygetpidstrncpyutmpnameupdwtmpbasenamesetutentpututlineendutent% ????????@
47 UH???S1?H??(?????H??$??H?{? H??f?$??H??$H??H???????H??$?1??H??,H?H?@H?@H?@H??$H??L?H??$1??H??$H??$??TH??$f???X?H??t???H??([]Ð1???/var/run/utmpzRx ?,? ? ?GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7).symtab.strtab.shstrtab.rela.text.data.bss.rodata.str1.1.rela.eh_frame.comment.note.GNU-stack @h? &D,D12DEXH@@ O?*X??hx?  W ".5DNlogoututmpnamesetutentstrncpygetutline_rmemset__gettimeofdaypututlineendutent
61 ?????GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7).symtab.strtab.shstrtab.rela.text.data.bss.rodata.str1.1.rela.eh_frame.comment.note.GNU-stack @??? &$,$12$E8@@? Ox*X??hPP  ?6 ? .logwtmpmemsetgetpidstrncpy__gettimeofdayupdwtmp/ ????????4
  /external/jhead/
gpsinfo.c 230 strncpy(ImageInfo.GpsLat+2, TempString, 29);
232 strncpy(ImageInfo.GpsLong+2, TempString, 29);
240 strncpy(ImageInfo.GpsLatRaw, TempString, 31);
242 strncpy(ImageInfo.GpsLongRaw, TempString, 31);
268 strncpy(ImageInfo.GpsDateStamp, (char*)ValuePtr, sizeof(ImageInfo.GpsDateStamp));
  /external/bluetooth/bluez/plugins/
gatt-example.c 182 strncpy((char *) atval, desc_out_temp, len);
209 strncpy((char *) atval, desc_out_hum, len);
256 strncpy((char *) atval, manufacturer_name1, len);
269 strncpy((char *) atval, serial1, len);
313 strncpy((char *) atval, manufacturer_name2, len);
326 strncpy((char *) atval, serial2, len);
452 strncpy((char *) atval, desc_weight, len);
  /external/ppp/pppd/plugins/radius/
avpair.c 79 strncpy (vp->strvalue, (char *) pval, AUTH_STRING_LEN);
124 strncpy (vp->name, pda->name, sizeof (vp->name));
706 strncpy(name, pair->name, (size_t) ln);
736 strncpy(value, dval->name, (size_t) lv-1);
741 strncpy(value, buffer, (size_t) lv);
747 strncpy (value, inet_ntoa (inad), (size_t) lv-1);
753 strncpy(value, buffer, lv-1);
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 1026 strncpy(to, from, 0);
1027 strncpy(to - 1, from - 1, 0);
1028 // normal strncpy calls
1029 strncpy(to, from, from_size);
1030 strncpy(to, from, to_size);
1031 strncpy(to, from + from_size - 1, to_size);
1032 strncpy(to + to_size - 1, from, 1);
1034 EXPECT_DEATH(Ident(strncpy(to, from - 1, from_size)),
1036 EXPECT_DEATH(Ident(strncpy(to - 1, from, from_size)),
1038 EXPECT_DEATH(Ident(strncpy(to, from + from_size, 1))
    [all...]
  /external/clang/test/Analysis/
string.c 483 // strncpy()
491 #define strncpy(a,b,n) __strncpy_chk(a,b,n,(size_t)-1) macro
495 #define strncpy BUILTIN(strncpy) macro
496 char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
502 strncpy(NULL, x, 5); // expected-warning{{Null pointer argument in call to string copy function}}
506 strncpy(x, NULL, 5); // expected-warning{{Null pointer argument in call to string copy function}}
510 strncpy(x, (char*)&strcpy_fn, 5); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
516 if (strncpy(x, y, 5) != x)
529 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}
    [all...]
  /external/iproute2/misc/
lnstat_util.c 128 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
155 strncpy(buf, RTSTAT_COMPAT_LINE, sizeof(buf)-1);
240 strncpy(lf->basename, "rt_cache", sizeof(lf->basename));
  /bionic/libc/wchar/
wcsncpy.c 35 static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93";
  /bionic/libstdc++/include/
cstring 59 using ::strncpy;
  /development/ide/xcode/ports/
skia_mac.cp 36 strncpy(workingDirectory, applicationPath, prefixLength);
  /development/tools/emulator/system/camera/
EmulatedQemuCamera.cpp 84 strncpy(first_dim, frame_dims, sizeof(first_dim));
  /device/moto/stingray/ril/
libmoto_nwif_ril.so 
logcatd-blan 
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_ETC.c 128 return strncpy(dest, src, num);
  /external/bluetooth/bluez/src/
oui.c 75 strncpy(str, off, end - off);
  /external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
widget.cc 60 strncpy(buffer, name_.c_str(), max_size-1);
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 99 strncpy(mtpt, "/", mtlen);
141 strncpy(mtpt, mnt->mnt_dir, mtlen);
229 strncpy(mtpt, mp->f_mntonname, mtlen);
310 strncpy(mtpt, "<swap>", mtlen);
  /external/freetype/include/freetype/config/
ftstdlib.h 89 #define ft_strncpy strncpy
  /external/iproute2/tc/
tc_qdisc.c 79 strncpy(d, *argv, sizeof(d)-1);
101 strncpy(k, "ingress", sizeof(k)-1);
126 strncpy(k, *argv, sizeof(k)-1);
292 strncpy(d, *argv, sizeof(d)-1);
  /external/ipsec-tools/src/racoon/
misc.h 63 #define strlcpy(d,s,l) (strncpy(d,s,l), (d)[(l)-1] = '\0')
  /external/libpcap/
fad-glifc.c 214 strncpy(ifrflags.lifr_name, ifrp->lifr_name,
233 strncpy(ifrnetmask.lifr_name, ifrp->lifr_name,
260 strncpy(ifrbroadaddr.lifr_name, ifrp->lifr_name,
295 strncpy(ifrdstaddr.lifr_name, ifrp->lifr_name,
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.cc 60 strncpy(buffer, name_.c_str(), max_size-1);

Completed in 1336 milliseconds

1 2 3 45 6 7 8 91011>>