1#include <cutils/properties.h> 2#include <cutils/trace.h> 3 4extern "C" { 5 6int 7property_get(const char *key, char *value, const char *default_value) 8{ 9 return 0; 10} 11 12void 13atrace_begin_body(const char * /*name*/) 14{ 15} 16 17void 18atrace_end_body() 19{ 20} 21 22void 23atrace_init() 24{ 25} 26 27uint64_t 28atrace_get_enabled_tags() 29{ 30 return ATRACE_TAG_NOT_READY; 31} 32} 33