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

1 2 3 4 5 6 7 8 9

  /external/e2fsprogs/debugfs/
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...]
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...]
  /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)
  /bionic/benchmarks/
main.cpp 35 int errcode = regcomp(re, argv[i], 0); local
36 if (errcode != 0) {
37 size_t errbuf_size = regerror(errcode, re, NULL, 0);
40 regerror(errcode, re, errbuf, errbuf_size);
  /external/skia/tests/
ErrorTest.cpp 18 #define CHECK(errcode) \
19 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/deqp/framework/egl/
egluDefs.cpp 55 Error::Error (deUint32 errCode, const char* errStr)
56 : tcu::TestError ((std::string("EGL returned ") + getErrorName(errCode)).c_str(), errStr ? errStr : "", __FILE__, __LINE__)
57 , m_error (errCode)
61 Error::Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line)
63 , m_error (errCode)
  /external/freetype/include/
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 ) */
  /external/pdfium/third_party/freetype/include/
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 ) */
  /external/icu/icu4c/source/common/
umutex.h 230 inline void umtx_initOnce(UInitOnce &uio, void (*fp)(UErrorCode &), UErrorCode &errCode) {
231 if (U_FAILURE(errCode)) {
236 (*fp)(errCode);
237 uio.fErrCode = errCode;
242 errCode = uio.fErrCode;
261 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
262 if (U_FAILURE(errCode)) {
267 (*fp)(context, errCode);
268 uio.fErrCode = errCode;
273 errCode = uio.fErrCode
    [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/
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...]
pass1.c 597 pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("in-use inode map"),
601 if (pctx.errcode) {
607 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
611 if (pctx.errcode) {
617 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
620 if (pctx.errcode) {
626 pctx.errcode = e2fsck_allocate_subcluster_bitmap(fs,
629 if (pctx.errcode) {
639 pctx.errcode = ext2fs_create_icount2(fs, 0, 0, 0,
644 if (pctx.errcode) {
    [all...]
  /external/kernel-headers/original/uapi/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/x86_64-linux-glibc2.11-4.8/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.15-4.8/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
  /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) {
  /external/iptables/libipq/
libipq.c 66 int errcode; member in struct:ipq_errmap_t
101 static char *ipq_strerror(int errcode);
193 static char *ipq_strerror(int errcode)
195 if (errcode < 0 || errcode > IPQ_MAXERR)
196 errcode = IPQ_ERR_IMPL;
197 return ipq_errmap[errcode].message;

Completed in 3400 milliseconds

1 2 3 4 5 6 7 8 9