HomeSort by relevance Sort by last modified time
    Searched defs:FAILIF (Results 1 - 12 of 12) 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));
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc/
debug.h 49 #define FAILIF(cond, msg...) do { \
  /build/tools/apriori/
debug.h 10 #define FAILIF(cond, msg...) do { \
30 #define FAILIF(cond, msg...) do { \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/iself/
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);
  /build/tools/isprelinked/
debug.h 10 #define FAILIF(cond, msg...) do { \
30 #define FAILIF(cond, msg...) do { \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/lsd/
debug.h 10 #define FAILIF(cond, msg...) do { \
30 #define FAILIF(cond, msg...) do { \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
48 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
55 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
62 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/soslim/
debug.h 10 #define FAILIF(cond, msg...) do { \
30 #define FAILIF(cond, msg...) do { \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /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);
  /external/elfcopy/
debug.h 10 #define FAILIF(cond, msg...) do { \
30 #define FAILIF(cond, msg...) do { \
43 FAILIF(cond, "%s(): %s\n", #function, elf_errmsg(elf_errno()));
47 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
59 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...]
  /external/bluetooth/bluez/tools/
hciattach_tialt.c 51 #define FAILIF(x, args...) do { \
69 FAILIF(read_hci_event(fd, (unsigned char *)&resp, sizeof(resp)) < 0,
73 FAILIF(resp.uart_prefix != HCI_EVENT_PKT,
77 FAILIF(resp.hci_hdr.evt != EVT_CMD_COMPLETE, /* event must be event-complete */
81 FAILIF(resp.hci_hdr.plen < 4, /* plen >= 4 for EVT_CMD_COMPLETE */
86 FAILIF(resp.cmd_complete.opcode != (uint16_t)opcode,
138 FAILIF(fw < 0,
152 FAILIF(nr != sizeof(cmdp), "Could not read H4 + HCI header!\n");
153 FAILIF(*cmdp != HCI_COMMAND_PKT, "Command is not an H4 command packet!\n");
155 FAILIF(read(fw, data, cmd->plen) != cmd->plen
    [all...]

Completed in 506 milliseconds