HomeSort by relevance Sort by last modified time
    Searched defs:FAILIF (Results 1 - 4 of 4) sorted by null

  /hardware/msm7k/librpc/
debug.h 58 #define FAILIF(cond, msg...) do { \
rpc.c 130 #define FAILIF(x) do { if (x) return FALSE; } while(0)
134 FAILIF(!XDR_SEND_INT8(xdr, (int8_t *)&auth->oa_flavor));
137 FAILIF(!XDR_SEND_INT16(xdr, (int16_t *)&auth->oa_flavor));
140 FAILIF(!XDR_SEND_INT32(xdr, (int32_t *)&auth->oa_flavor));
  /development/tools/yuv420sp2rgb/
debug.h 12 #define FAILIF(cond, msg...) do { \
32 #define FAILIF(cond, msg...) do { \
45 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
55 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /system/bluetooth/brfpatch/
brfpatch.c 24 #define FAILIF(x, args...) do { \
78 FAILIF(strncmp(buf, "Send_", 5) != 0, "Not expecting: %s\n", buffer);
83 FAILIF(advance(&buf), "Could not find opcode in: %s\n", buffer);
84 FAILIF(sscanf(buf, "0x%04x\n", &opcode) != 1,
96 FAILIF(dp > data + sizeof(data),
98 FAILIF(sscanf(buf, "%02x", (unsigned int *)dp) != 1,
108 FAILIF(*buf != 'x', "Error parsing: %s\n", buffer);
119 FAILIF(sscanf(buf, "%02x", (unsigned int *)dp) != 1,
125 FAILIF(sscanf(buf, "%04x", (unsigned int *)dp) != 1,
131 FAILIF(sscanf(buf, "%06x", (unsigned int *)dp) != 1
    [all...]

Completed in 364 milliseconds