Searched defs:ERROR (Results 1 - 8 of 8) sorted by relevance

/system/core/init/
H A Dlog.h22 #define ERROR(x...) KLOG_ERROR("init", x) macro
/system/core/fs_mgr/
H A Dfs_mgr_priv.h24 #define ERROR(x...) KLOG_ERROR("fs_mgr", x) macro
/system/core/fastboot/
H A Dprotocol.c43 static char ERROR[128]; variable
47 return ERROR;
58 sprintf(ERROR, "status read failed (%s)", strerror(errno));
65 sprintf(ERROR, "status malformed (%d bytes)", r);
84 sprintf(ERROR, "remote: %s", status + 4);
86 strcpy(ERROR, "remote failure");
94 strcpy(ERROR, "data size too large");
101 strcpy(ERROR,"unknown status code");
120 sprintf(ERROR,"command too large");
125 sprintf(ERROR,"comman
[all...]
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_mutex.c96 #define ERROR(errcode,...) error((errcode),__FUNCTION__,__VA_ARGS__) macro
99 { int _ret = (cond); if (_ret != 0) ERROR(_ret,"%d:%s", __LINE__, #cond); }
H A Dtest_pthread_rwlock.c95 #define ERROR(errcode,...) error((errcode),__FUNCTION__,__VA_ARGS__) macro
98 { int _ret = (cond); if (_ret != 0) ERROR(_ret,"%d:%s", __LINE__, #cond); }
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp32 #define ERROR 1 macro
324 EXPECT_EQ(ERROR, result);
344 EXPECT_EQ(ERROR, result);
596 EXPECT_EQ(ERROR, result);
654 EXPECT_EQ(ERROR, result);
698 EXPECT_EQ(ERROR, result);
724 EXPECT_EQ(ERROR, result);
743 EXPECT_EQ(ERROR, result);
974 EXPECT_EQ(ERROR, result);
1026 EXPECT_EQ(ERROR, resul
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c24 #define ERROR 1 macro
179 if (metadata == NULL) return ERROR;
185 if (metadata == NULL) return ERROR;
250 if (dst == NULL || src == NULL ) return ERROR;
252 if (dst->entry_capacity < src->entry_count + dst->entry_count) return ERROR;
253 if (dst->data_capacity < src->data_count + dst->data_count) return ERROR;
315 if (dst == NULL) return ERROR;
316 if (dst->entry_count == dst->entry_capacity) return ERROR;
317 if (data == NULL) return ERROR;
348 return ERROR;
[all...]
/system/core/sdcard/
H A Dsdcard.c68 #define ERROR(x...) fprintf(stderr,x) macro
175 ERROR("Zero refcnt %p\n", node);
259 ERROR("opendir %s failed: %s", path, strerror(errno));
463 ERROR("*** REPLY FAILED *** %d\n", errno);
1166 ERROR("[%d] handle_fuse_requests: errno=%d\n", handler->token, errno);
1172 ERROR("[%d] request too short: len=%zu\n", handler->token, (size_t)len);
1178 ERROR("[%d] malformed header: len=%zu, hdr->len=%u\n",
1193 TRACE("[%d] ERROR %d\n", handler->token, res);
1214 ERROR("cannot allocate storage for threads");
1227 ERROR("faile
[all...]

Completed in 257 milliseconds