/external/openssh/openbsd-compat/ |
basename.c | 29 static char bname[MAXPATHLEN]; local 35 bname[0] = '.'; 36 bname[1] = '\0'; 37 return (bname); 47 bname[0] = '/'; 48 bname[1] = '\0'; 49 return (bname); 58 if (len >= sizeof(bname)) { 62 memcpy(bname, startp, len); 63 bname[len] = '\0' [all...] |
/external/zlib/src/test/ |
minigzip.c | 563 char *bname, outmode[20]; local 572 bname = strrchr(argv[0], '/'); 573 if (bname) 574 bname++; 576 bname = argv[0]; 579 if (!strcmp(bname, "gunzip")) 581 else if (!strcmp(bname, "zcat"))
|
/external/yaffs2/yaffs2/direct/ |
dtest.c | 963 char bname[100]; local 973 sprintf(bname,"%s%s",path,"/b"); 979 b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE); 981 printf(" %s %d %s %d\n",aname,a,bname,b); 1027 char bname[100]; local 1037 sprintf(bname,"%s%s",path,"/b"); 1043 b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE); 1045 printf(" %s %d %s %d\n",aname,a,bname,b); 1100 char bname[100]; local 1110 sprintf(bname,"%s%s",path,"/b") [all...] |
/system/core/toolbox/ |
newfs_msdos.c | 268 const char *fname, *dtype, *bname; local 496 bname = NULL; 499 bname = opt_B; 500 if (!strchr(bname, '/')) { 501 snprintf(buf, sizeof(buf), "/boot/%s", bname); 502 if (!(bname = strdup(buf))) 505 if ((fd1 = open(bname, O_RDONLY)) == -1 || fstat(fd1, &sb)) 506 err(1, "%s", bname); 509 errx(1, "%s: inappropriate file type or format", bname); 630 err(1, "%s", bname); [all...] |
/external/chromium_org/third_party/libxslt/win32/ |
configure.js | 288 /* Creates the readme file for the binary distribution of 'bname', for the 291 function genReadme(bname, ver, file) 296 f.WriteLine(" " + bname + " " + ver); 299 f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32"); 304 f.WriteLine("make sure that your tools which use " + bname + " can find it."); 309 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
|
/external/yaffs2/yaffs2/utils/ |
mkyaffsimage.c | 124 __u8 *bname = (__u8 *)name; local 126 while (*bname) 128 sum += (*bname) * i; 130 bname++;
|
/bionic/linker/ |
linker.cpp | 716 const char* bname = strrchr(name, '/'); local 717 soinfo* si = soinfo_alloc(bname ? bname + 1 : name); 735 const char *bname; local 740 bname = strrchr(name, '/'); 741 bname = bname ? bname + 1 : name; 744 if (!strcmp(bname, si->name)) { [all...] |
/external/chromium_org/third_party/libxml/src/win32/ |
configure.js | 399 /* Creates the readme file for the binary distribution of 'bname', for the 402 function genReadme(bname, ver, file) 407 f.WriteLine(" " + bname + " " + ver); 410 f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32"); 415 f.WriteLine("make sure that your tools which use " + bname + " can find it."); 420 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
|
/external/dnsmasq/src/ |
cache.c | 193 crecp->name.bname->next = big_free; 194 big_free = crecp->name.bname; 228 return crecp->name.bname->name; 451 new->name.bname = big_name; 890 cache->name.bname->next = big_free; 891 big_free = cache->name.bname; [all...] |
dnsmasq.h | 274 union bigname *bname; member in union:crec::__anon20078
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config_file.c | 324 int *line, char *bname) 329 name_end = os_strchr(bname, '='); 337 blob = wpa_config_read_blob(f, line, bname); 340 *line, bname);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
trace.py | 623 bname = os.path.basename(filename) 624 print "%s(%d): %s" % (bname, lineno, 636 bname = os.path.basename(filename) 637 print "%s(%d): %s" % (bname, lineno,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 623 bname = os.path.basename(filename) 624 print "%s(%d): %s" % (bname, lineno, 636 bname = os.path.basename(filename) 637 print "%s(%d): %s" % (bname, lineno,
|
/external/elfutils/src/ |
ar.c | 1227 const char *bname = basename (argv[cnt]); local 1228 size_t bnamelen = strlen (bname); 1234 remember_long_name (found[cnt], bname, bnamelen); [all...] |
/external/yaffs2/yaffs2/ |
yaffs_guts.c | 557 YUCHAR *bname = (YUCHAR *) name; local 558 if (bname) { 559 while ((*bname) && (i <= YAFFS_MAX_NAME_LENGTH)) { 562 sum += yaffs_toupper(*bname) * i; 564 sum += (*bname) * i; 567 bname++; [all...] |