Searched defs:outdir (Results 1 - 3 of 3) sorted by relevance

/external/e2fsprogs/e2fsck/
H A Drehash.c223 static errcode_t alloc_size_dir(ext2_filsys fs, struct out_dir *outdir, argument
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
247 free_out_dir(struct out_dir *outdir) argument
255 get_next_block(ext2_filsys fs, struct out_dir *outdir, char ** ret) argument
397 copy_dir_entries(e2fsck_t ctx, struct fill_dir_struct *fd, struct out_dir *outdir) argument
549 calculate_tree(ext2_filsys fs, struct out_dir *outdir, ext2_ino_t ino, ext2_ino_t parent) argument
625 struct out_dir *outdir; member in struct:write_dir_struct
666 write_directory(e2fsck_t ctx, ext2_filsys fs, struct out_dir *outdir, ext2_ino_t ino, int compress) argument
709 struct out_dir outdir; local
[all...]
/external/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp165 const std::string& outdir,
169 Ctx(0), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
164 AnalysisConsumer(const Preprocessor& pp, const std::string& outdir, AnalyzerOptionsRef opts, ArrayRef<std::string> plugins) argument
/external/openssl/apps/
H A Dca.c169 " -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_O
[all...]

Completed in 127 milliseconds