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

1 2 3 4 5 6 7 8 91011

  /external/chromium/base/
bzip2_error_handler.cc 12 void bz_internal_error(int errcode) {
13 LOG(FATAL) << "bzip2 internal error: " << errcode;
  /external/e2fsprogs/debugfs/
htree.c 36 errcode_t errcode; local
47 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
48 if (errcode) {
49 com_err("htree_dump_leaf_node", errcode,
56 errcode = ext2fs_read_dir_block2(current_fs, pblk, buf, 0);
57 if (errcode) {
58 com_err("htree_dump_leaf_node", errcode,
70 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len);
71 if (errcode) {
72 com_err("htree_dump_leaf_inode", errcode,
164 errcode_t errcode; local
207 errcode_t errcode; local
395 errcode_t errcode; local
    [all...]
  /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; \
79 ctx->errcode = EXT2_ET_BAD_IND_BLOCK;
83 ctx->errcode = ext2fs_read_ind_block(ctx->fs, *ind_block,
85 if (ctx->errcode) {
122 ctx->errcode = ext2fs_write_ind_block(ctx->fs, *ind_block,
124 if (ctx->errcode)
157 ctx->errcode = EXT2_ET_BAD_DIND_BLOCK;
161 ctx->errcode = ext2fs_read_ind_block(ctx->fs, *dind_block
    [all...]
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);
get_pathname.c 37 errcode_t errcode; member in struct:get_pathname_struct
61 gp->errcode = retval;
98 gp.errcode = 0;
103 if (gp.errcode) {
104 retval = gp.errcode;
dir_iterate.c 124 ctx.errcode = 0;
131 return ctx.errcode;
200 ctx->errcode = ext2fs_read_dir_block(fs, *blocknr, ctx->buf);
201 if (ctx->errcode)
212 ctx->errcode = EXT2_ET_DIR_CORRUPTED;
261 ctx->errcode = ext2fs_write_dir_block(fs, *blocknr, ctx->buf);
262 if (ctx->errcode)
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorUtils.h 39 * VIDEOEDITOR_CHECK(test, errCode)
44 #define VIDEOEDITOR_CHECK(test, errCode) \
48 __FILE__, __LINE__, errCode); \
49 err = (errCode); \
  /external/skia/tests/
ErrorTest.cpp 13 #define CHECK(errcode) \
14 REPORTER_ASSERT( reporter, (err = SkGetLastError()) == errcode); \
  /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/freetype/include/freetype/
ftmoderr.h 53 /* FT_ERR_EQ( errcode, err ) */
54 /* FT_ERR_NEQ( errcode, err ) */
55 /* Compare error code `errcode' with the error `err' for equality */
68 /* FT_ERROR_BASE( errcode ) */
69 /* FT_ERROR_MODULE( errcode ) */
  /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/
pass1b.c 219 pctx.errcode = ext2fs_allocate_inode_bitmap(fs,
221 if (pctx.errcode) {
277 pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
279 if (pctx.errcode) {
289 pctx.errcode = ext2fs_get_next_inode(scan, &ino, &inode);
290 if (pctx.errcode == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE)
292 if (pctx.errcode) {
310 pctx.errcode = ext2fs_block_iterate2(fs, ino,
322 if (pctx.errcode)
530 pctx.errcode = clone_file(ctx, ino, p, block_buf)
647 errcode_t errcode; member in struct:clone_struct
    [all...]
pass3.c 76 pctx.errcode = ext2fs_allocate_inode_bitmap(fs, _("inode done bitmap"),
78 if (pctx.errcode) {
176 pctx.errcode = ext2fs_new_block(fs, 0, ctx->block_found_map, &blk);
177 if (pctx.errcode) {
190 pctx.errcode = ext2fs_new_dir_block(fs, EXT2_ROOT_INO, EXT2_ROOT_INO,
192 if (pctx.errcode) {
199 pctx.errcode = ext2fs_write_dir_block(fs, blk, block);
200 if (pctx.errcode) {
222 pctx.errcode = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
223 if (pctx.errcode) {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.h 69 XML_Error errCode)
70 { outer_->IncomingError(pctx, errCode); }
84 XML_Error errCode);
  /external/chromium_org/third_party/icu/source/common/
ubidiimp.h 315 #define RETURN_IF_NOT_VALID_PARA(bidi, errcode, retvalue) \
317 errcode=U_INVALID_STATE_ERROR; \
320 #define RETURN_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode, retvalue) \
322 errcode=U_INVALID_STATE_ERROR; \
325 #define RETURN_IF_BAD_RANGE(arg, start, limit, errcode, retvalue) \
327 (errcode)=U_ILLEGAL_ARGUMENT_ERROR; \
333 #define RETURN_VOID_IF_NOT_VALID_PARA(bidi, errcode) \
335 errcode=U_INVALID_STATE_ERROR; \
338 #define RETURN_VOID_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode) \
340 errcode=U_INVALID_STATE_ERROR;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.h 69 XML_Error errCode)
70 { outer_->IncomingError(pctx, errCode); }
84 XML_Error errCode);
  /external/chromium_org/third_party/sqlite/src/test/
backup_malloc.test 78 set errcode [sqlite3_errcode db2]
79 if {$rc && ($errcode == "SQLITE_NOMEM" || $errcode == "SQLITE_IOERR_NOMEM")} {
  /external/icu4c/common/
ubidiimp.h 321 #define RETURN_IF_NOT_VALID_PARA(bidi, errcode, retvalue) \
323 errcode=U_INVALID_STATE_ERROR; \
326 #define RETURN_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode, retvalue) \
328 errcode=U_INVALID_STATE_ERROR; \
331 #define RETURN_IF_BAD_RANGE(arg, start, limit, errcode, retvalue) \
333 (errcode)=U_ILLEGAL_ARGUMENT_ERROR; \
339 #define RETURN_VOID_IF_NOT_VALID_PARA(bidi, errcode) \
341 errcode=U_INVALID_STATE_ERROR; \
344 #define RETURN_VOID_IF_NOT_VALID_PARA_OR_LINE(bidi, errcode) \
346 errcode=U_INVALID_STATE_ERROR;
    [all...]
  /external/kernel-headers/original/linux/
capi.h 91 * capi errcode is set, * if read, write, or ioctl returns EIO,
92 * ioctl returns errcode directly, and in arg, if != 0
116 __u16 errcode; member in union:capi_ioctl_struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
capi.h 89 * capi errcode is set, * if read, write, or ioctl returns EIO,
90 * ioctl returns errcode directly, and in arg, if != 0
114 __u16 errcode; member in union:capi_ioctl_struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
capi.h 89 * capi errcode is set, * if read, write, or ioctl returns EIO,
90 * ioctl returns errcode directly, and in arg, if != 0
114 __u16 errcode; member in union:capi_ioctl_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
capi.h 89 * capi errcode is set, * if read, write, or ioctl returns EIO,
90 * ioctl returns errcode directly, and in arg, if != 0
114 __u16 errcode; member in union:capi_ioctl_struct

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011