Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching refs:result

86     int result;
87 result = loc_eng_dmn_conn_glue_piperemove(q_path, msgqid);
88 return result;
113 int result;
117 result = loc_eng_dmn_conn_glue_pipewrite(msgqid, msgp, msgsz);
118 if (result != (int) msgsz) {
119 LOC_LOGE("%s:%d] pipe broken %d, msgsz = %d\n", __func__, __LINE__, result, (int) msgsz);
123 return result;
148 int result;
151 result = loc_eng_dmn_conn_glue_piperead(msgqid, &(pmsg->msgsz), sizeof(pmsg->msgsz));
152 if (result != sizeof(pmsg->msgsz)) {
153 LOC_LOGE("%s:%d] pipe broken %d\n", __func__, __LINE__, result);
162 result = loc_eng_dmn_conn_glue_piperead(msgqid, (uint8_t *) msgp + sizeof(pmsg->msgsz), pmsg->msgsz - sizeof(pmsg->msgsz));
163 if (result != (int) (pmsg->msgsz - sizeof(pmsg->msgsz))) {
164 LOC_LOGE("%s:%d] pipe broken %d, msgsz = %d\n", __func__, __LINE__, result, (int) pmsg->msgsz);