HomeSort by relevance Sort by last modified time
    Searched refs:errcode (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /external/e2fsprogs/debugfs/
zap.c 32 errcode_t errcode; local
130 errcode = ext2fs_bmap2(current_fs, inode, 0, 0, 0,
132 if (errcode) {
133 com_err(argv[0], errcode,
145 errcode = io_channel_read_blk64(current_fs->io, block, 1, buf);
146 if (errcode) {
147 com_err(argv[0], errcode,
157 errcode = io_channel_write_blk64(current_fs->io, block, 1, buf);
158 if (errcode) {
159 com_err(argv[0], errcode,
173 errcode_t errcode; local
    [all...]
htree.c 36 errcode_t errcode; local
47 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
48 if (errcode) {
49 com_err("htree_dump_leaf_node", errcode,
55 errcode = ext2fs_read_dir_block2(current_fs, pblk, buf, 0);
56 if (errcode) {
57 com_err("htree_dump_leaf_node", errcode,
69 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
70 if (errcode) {
71 com_err("htree_dump_leaf_inode", errcode,
163 errcode_t errcode; local
203 errcode_t errcode; local
369 errcode_t errcode; local
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteCommon.h 44 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message);
46 void throw_sqlite3_exception(JNIEnv* env, int errcode,
android_database_SQLiteCommon.cpp 54 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) {
55 throw_sqlite3_exception(env, errcode, "unknown error", message);
61 void throw_sqlite3_exception(JNIEnv* env, int errcode,
64 switch (errcode & 0xff) { /* mask off extended error code */
126 fullMessage.appendFormat(" (code %d)", errcode); // print extended error code
  /external/e2fsprogs/lib/ext2fs/
dblist_dir.c 53 ctx.errcode = 0;
61 return ctx.errcode;
72 ctx->errcode = 0;
76 if ((ret & BLOCK_ABORT) && !ctx->errcode)
block.c 32 errcode_t errcode; member in struct:block_context
43 (ctx)->errcode = EXT2_ET_RO_BLOCK_ITERATE; \
53 (ctx)->errcode = EXT2_ET_RO_BLOCK_ITERATE; \
83 ctx->errcode = EXT2_ET_BAD_IND_BLOCK;
87 ctx->errcode = ext2fs_read_ind_block(ctx->fs, *ind_block,
89 if (ctx->errcode) {
130 ctx->errcode = ext2fs_write_ind_block(ctx->fs, *ind_block,
132 if (ctx->errcode)
172 ctx->errcode = EXT2_ET_BAD_DIND_BLOCK;
176 ctx->errcode = ext2fs_read_ind_block(ctx->fs, *dind_block
    [all...]
get_pathname.c 37 errcode_t errcode; member in struct:get_pathname_struct
61 gp->errcode = retval;
98 gp.errcode = 0;
115 if (gp.errcode) {
116 retval = gp.errcode;
dir_iterate.c 124 ctx.errcode = 0;
131 return ctx.errcode;
200 ctx->errcode = ext2fs_read_dir_block3(fs, *blocknr, ctx->buf, 0);
201 if (ctx->errcode)
212 ctx->errcode = EXT2_ET_DIR_CORRUPTED;
261 ctx->errcode = ext2fs_write_dir_block3(fs, *blocknr, ctx->buf,
263 if (ctx->errcode)
bitops.c 69 void ext2fs_warn_bitmap(errcode_t errcode, unsigned long arg,
74 com_err(0, errcode, "#%lu for %s", arg, description);
76 com_err(0, errcode, "#%lu", arg);
  /external/llvm/lib/Support/
regerror.c 84 llvm_regerror(int errcode, const llvm_regex_t *preg, char *errbuf, size_t errbuf_size)
88 int target = errcode &~ REG_ITOA;
92 if (errcode == REG_ATOI)
99 if (errcode&REG_ITOA) {
  /ndk/sources/host-tools/ndk-stack/regex/
regerror.c 79 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size)
83 int target = errcode &~ REG_ITOA;
87 if (errcode == REG_ATOI)
94 if (errcode&REG_ITOA) {
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 163 int errcode,
170 int target = errcode &~ REG_ITOA;
174 _DIAGASSERT(errcode != REG_ATOI || preg != NULL);
177 if (errcode == REG_ATOI)
184 if (errcode & REG_ITOA) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
robotparser.py 60 self.errcode = opener.errcode
61 if self.errcode in (401, 403):
63 elif self.errcode >= 400:
65 elif self.errcode == 200 and lines:
212 self.errcode = 200
219 def http_error_default(self, url, fp, errcode, errmsg, headers):
220 self.errcode = errcode
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
robotparser.py 60 self.errcode = opener.errcode
61 if self.errcode in (401, 403):
63 elif self.errcode >= 400:
65 elif self.errcode == 200 and lines:
212 self.errcode = 200
219 def http_error_default(self, url, fp, errcode, errmsg, headers):
220 self.errcode = errcode
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
robotparser.py 60 self.errcode = opener.errcode
61 if self.errcode in (401, 403):
63 elif self.errcode >= 400:
65 elif self.errcode == 200 and lines:
212 self.errcode = 200
219 def http_error_default(self, url, fp, errcode, errmsg, headers):
220 self.errcode = errcode
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
robotparser.py 60 self.errcode = opener.errcode
61 if self.errcode in (401, 403):
63 elif self.errcode >= 400:
65 elif self.errcode == 200 and lines:
212 self.errcode = 200
219 def http_error_default(self, url, fp, errcode, errmsg, headers):
220 self.errcode = errcode
221 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
    [all...]
  /external/e2fsprogs/e2fsck/
pass1.c 603 pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("in-use inode map"),
607 if (pctx.errcode) {
613 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
617 if (pctx.errcode) {
623 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
626 if (pctx.errcode) {
632 pctx.errcode = e2fsck_allocate_subcluster_bitmap(fs,
635 if (pctx.errcode) {
645 pctx.errcode = ext2fs_create_icount2(fs, 0, 0, 0,
650 if (pctx.errcode) {
    [all...]
pass1b.c 220 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
224 if (pctx.errcode) {
281 pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
283 if (pctx.errcode) {
297 pctx.errcode = ext2fs_get_next_inode(scan, &ino, &inode);
298 if (pctx.errcode == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE)
300 if (pctx.errcode) {
319 pctx.errcode = ext2fs_block_iterate3(fs, ino,
336 if (pctx.errcode)
550 pctx.errcode = clone_file(ctx, ino, p, block_buf)
686 errcode_t errcode; member in struct:clone_struct
    [all...]
pass3.c 76 pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("inode done bitmap"),
79 if (pctx.errcode) {
178 pctx.errcode = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
179 if (pctx.errcode) {
192 pctx.errcode = ext2fs_new_dir_block(fs, EXT2_ROOT_INO, EXT2_ROOT_INO,
194 if (pctx.errcode) {
201 pctx.errcode = ext2fs_write_dir_block3(fs, blk, block, 0);
202 if (pctx.errcode) {
224 pctx.errcode = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
225 if (pctx.errcode) {
    [all...]
  /external/libevent/
log.c 62 static void event_exit(int errcode) EV_NORETURN;
73 event_exit(int errcode)
76 fatal_fn(errcode);
77 exit(errcode); /* should never be reached */
78 } else if (errcode == _EVENT_ERR_ABORT)
81 exit(errcode);
  /external/skia/tests/
ErrorTest.cpp 18 #define CHECK(errcode) \
19 REPORTER_ASSERT( reporter, (err = SkGetLastError()) == errcode); \
  /external/libevent/include/event2/
util.h 330 /** Replace the most recent socket error with errcode */
331 #define EVUTIL_SET_SOCKET_ERROR(errcode) \
332 do { WSASetLastError(errcode); } while (0)
336 const char *evutil_socket_error_to_string(int errcode);
354 /** Replace the most recent socket error with errcode */
355 #define EVUTIL_SET_SOCKET_ERROR(errcode) ...
359 #define evutil_socket_error_to_string(errcode) ...
363 #define EVUTIL_SET_SOCKET_ERROR(errcode) \
364 do { errno = (errcode); } while (0)
366 #define evutil_socket_error_to_string(errcode) (strerror(errcode)
    [all...]
  /external/icu/icu4c/source/common/
ubidiimp.h 391 #define RETURN_IF_NOT_VALID_PARA(bidi, errcode, retvalue) \
393 errcode=U_INVALID_STATE_ERROR; \
396 #define RETURN_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode, retvalue) \
398 errcode=U_INVALID_STATE_ERROR; \
401 #define RETURN_IF_BAD_RANGE(arg, start, limit, errcode, retvalue) \
403 (errcode)=U_ILLEGAL_ARGUMENT_ERROR; \
409 #define RETURN_VOID_IF_NOT_VALID_PARA(bidi, errcode) \
411 errcode=U_INVALID_STATE_ERROR; \
414 #define RETURN_VOID_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode) \
416 errcode=U_INVALID_STATE_ERROR;
    [all...]
  /external/mdnsresponder/mDNSPosix/
nss_mdns.c 852 DNSServiceErrorType errcode; local
886 errcode =
898 if (errcode)
902 errcode
940 DNSServiceErrorType errcode; local
961 errcode =
973 if (errcode)
977 errcode
1807 int errcode = -1; local
1868 int errcode = init_config (); local
1907 int errcode; local
1956 int errcode = add_domain (conf, word); local
2062 int errcode = local
    [all...]
  /external/e2fsprogs/misc/
badblocks.c 148 errcode_t errcode; local
156 errcode = ext2fs_badblocks_list_add (bb_list, bad);
157 if (errcode) {
158 com_err (program_name, errcode, "adding to in-memory bad block list");
480 errcode_t errcode; local
486 errcode = ext2fs_badblocks_list_iterate_begin(bb_list,&bb_iter);
487 if (errcode) {
488 com_err(program_name, errcode, "%s",
741 errcode_t errcode; local
748 errcode = ext2fs_badblocks_list_iterate_begin(bb_list,&bb_iter)
1046 errcode_t errcode; local
    [all...]

Completed in 485 milliseconds

1 2 3 4 5 6 7