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
329 EXPECT_EQ(ERROR, result);
349 EXPECT_EQ(ERROR, result);
377 EXPECT_EQ(ERROR, result);
621 EXPECT_EQ(ERROR, result);
679 EXPECT_EQ(ERROR, result);
723 EXPECT_EQ(ERROR, result);
749 EXPECT_EQ(ERROR, result);
768 EXPECT_EQ(ERROR, result);
999 EXPECT_EQ(ERROR, resul
[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...]
/system/media/camera/src/
H A Dcamera_metadata.c24 #define ERROR 1 macro
223 if (metadata == NULL) return ERROR;
229 if (metadata == NULL) return ERROR;
276 if (dst == NULL || src == NULL ) return ERROR;
278 if (dst->entry_capacity < src->entry_count + dst->entry_count) return ERROR;
279 if (dst->data_capacity < src->data_count + dst->data_count) return ERROR;
339 if (dst == NULL) return ERROR;
340 if (dst->entry_count == dst->entry_capacity) return ERROR;
341 if (data == NULL) return ERROR;
345 if (data_bytes + dst->data_count > dst->data_capacity) return ERROR;
[all...]

Completed in 193 milliseconds