HomeSort by relevance Sort by last modified time
    Searched defs:outdir (Results 1 - 3 of 3) sorted by null

  /docs/source.android.com/scripts/
micro-httpd.py 22 outdir = os.path.join(os.path.dirname(__file__), '..', 'out') variable
23 os.chdir(outdir)
  /external/e2fsprogs/e2fsck/
rehash.c 223 static errcode_t alloc_size_dir(ext2_filsys fs, struct out_dir *outdir,
228 if (outdir->max) {
229 new_mem = realloc(outdir->buf, blocks * fs->blocksize);
232 outdir->buf = new_mem;
233 new_mem = realloc(outdir->hashes,
237 outdir->hashes = new_mem;
239 outdir->buf = malloc(blocks * fs->blocksize);
240 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t));
241 outdir->num = 0;
243 outdir->max = blocks
625 struct out_dir *outdir; member in struct:write_dir_struct
709 struct out_dir outdir; local
    [all...]
  /external/openssl/apps/
ca.c 169 " -outdir dir - Where to put output certificates\n",
279 char *outdir=NULL; local
438 else if (strcmp(*argv,"-outdir") == 0)
441 outdir= *(++argv);
848 if ((outdir == NULL) && (req))
851 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
858 /* outdir is a directory spec, but access() for VMS demands a
860 if outdir is not a directory spec, and the fopen() or open()
869 if (access(outdir,R_OK|W_OK|X_OK) != 0)
871 if (_access(outdir,R_OK|W_OK|X_OK) != 0
    [all...]

Completed in 661 milliseconds