Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching refs:result

64     int result;
67 result = mkfifo(pipe_name, 0660);
69 if ((result == -1) && (errno != EEXIST)) {
71 return result;
76 result = chmod (pipe_name, 0660);
77 if (result != 0){
140 int result;
142 result = write(fd, buf, sz);
146 /* LOC_LOGD("fd = %d, buf = 0x%lx, size = %d, result = %d\n", fd, (long) buf, (int) sz, (int) result); */
147 return result;
202 int result;
205 // result = fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NDELAY);
208 result = fcntl(fd, F_SETLK, &flock_v);
209 if (result < 0) {
213 return result;