/external/e2fsprogs/e2fsck/ |
rehash.c | 222 static errcode_t alloc_size_dir(ext2_filsys fs, struct out_dir *outdir, 227 if (outdir->max) { 228 new_mem = realloc(outdir->buf, blocks * fs->blocksize); 231 outdir->buf = new_mem; 232 new_mem = realloc(outdir->hashes, 236 outdir->hashes = new_mem; 238 outdir->buf = malloc(blocks * fs->blocksize); 239 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t)); 240 outdir->num = 0; 242 outdir->max = blocks 600 struct out_dir *outdir; member in struct:write_dir_struct 684 struct out_dir outdir; local [all...] |
/frameworks/base/tools/obbtool/ |
mkobb.sh | 203 outdir=`dirname ${filename}` 204 if [ ! -d "${outdir}" ]; then \ 205 echo "ERROR: Output directory does not exist: ${outdir}" 212 tempfile=$(tempfile -d ${outdir}) || ( echo "ERROR: couldn't create temporary file in ${outdir}"; exit 1 )
|
/external/webkit/WebKitTools/CodeCoverage/ |
regenerate-coverage-display | 287 sys.exit("Usage: %s DATADIR OUTDIR" % progname) 290 datadir, outdir = args 325 if not os.path.exists(outdir): 326 os.makedirs(outdir) 328 imgdir = os.path.join(outdir, rel_imgdir) 337 copy_files(outdir) 338 write_title_page(outdir, last_time, last_tot_lines, last_tot_covered, dir_serieses) 343 write_directory_site(outdir, dir_name, last_time, dir_serieses, file_serieses) 347 write_file_site(outdir, file_name, last_time, datadir, last_id, file_serieses)
|
/cts/tools/dx-tests/etc/ |
compileall | 57 outdir=$5 107 fdest=$outdir/cts/dxconverter
|
/external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/ |
Makefile | 45 $(SWIG) -o $(WRAPPER) -outdir $(OUTPUT_DIR) -perl -module DumpRenderTreeSupport $<
|
/external/clearsilver/scripts/ |
document.py | 264 alist, args = getopt.getopt(argv[1:], "q", ["help", "outdir=", "owner=", "hdf"]) 266 outdir = "." 273 if field == "--outdir": 274 outdir = val 288 parser.dump_manpages(outdir, owner) 290 parser.dump_hdf (outdir, owner)
|
/external/srec/config/en.us/ |
Android.mk | 60 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -vocab dictionary/enroll.ok -outdir $(G2G_INSTALL_PATH) 71 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -outdir $(G2G_INSTALL_PATH)
|
/external/clearsilver/ |
Makefile | 78 scripts/document.py --owner "ClearSilver" --outdir man/man3/ $$mdir/*.h; \ 85 scripts/document.py --hdf --owner "ClearSilver" --outdir docs/hdf/ $$mdir/*.h; \
|
/external/openssl/apps/ |
ca.c | 169 " -outdir dir - Where to put output certificates\n", 275 char *outdir=NULL; local 433 else if (strcmp(*argv,"-outdir") == 0) 436 outdir= *(++argv); 834 if ((outdir == NULL) && (req)) 837 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR)) 844 /* outdir is a directory spec, but access() for VMS demands a 846 if outdir is not a directory spec, and the fopen() or open() 855 if (access(outdir,R_OK|W_OK|X_OK) != 0) 857 if (_access(outdir,R_OK|W_OK|X_OK) != 0 [all...] |
/external/srec/tools/grxmlcompile/ |
grxmlcompile.cpp | 153 printf("USAGE: -par <par file> -grxml <grxml grammar file> -vocab <dictionary file (.ok)> [-outdir <output directory>]\n"); 163 std::string outdir("."); // default output dir is current directory 195 else if(!strcmp(argv[i],"-outdir")) 196 outdir = std::string(argv[++i]); 236 std::string grxmlbase = outdir + "/" + ExtractFileName(grxmlfile); [all...] |