Searched defs:ret (Results 1 - 8 of 8) sorted by relevance

/build/kati/
H A Dstringprintf.cc28 int ret = vsnprintf(&str[0], str.size(), format, args); local
30 assert(ret >= 0);
31 if (static_cast<size_t>(ret) < str.size()) {
32 str.resize(ret);
35 str.resize(ret + 1);
H A Dstring_piece.cc57 size_type ret = std::min(length_ - pos, n); local
58 memcpy(buf, ptr_ + pos, ret);
59 return ret;
/build/make/tools/atree/
H A Dfs.cpp200 int ret = execvp(args[0], (char* const*)args); local
203 return ret;
/build/tools/atree/
H A Dfs.cpp200 int ret = execvp(args[0], (char* const*)args); local
203 return ret;
/build/make/tools/makeparallel/
H A Dmakeparallel.cpp50 int ret = fcntl(fd, F_GETFD); local
51 if (ret < 0) {
196 int ret = sigaction(SIGALRM, &action, &oldaction); local
197 if (ret < 0) {
203 ret = setitimer(ITIMER_REAL, &timeout, NULL);
204 if (ret < 0) {
215 ret = setitimer(ITIMER_REAL, &cancel, NULL);
216 if (ret < 0) {
221 ret = sigaction(SIGALRM, &oldaction, NULL);
222 if (ret <
246 int ret; local
279 int ret = TEMP_FAILURE_RETRY(write(out_fd, &buf, 1)); local
371 int ret = 0; local
397 int ret = execvp(path, args.data()); local
[all...]
/build/tools/makeparallel/
H A Dmakeparallel.cpp50 int ret = fcntl(fd, F_GETFD); local
51 if (ret < 0) {
196 int ret = sigaction(SIGALRM, &action, &oldaction); local
197 if (ret < 0) {
203 ret = setitimer(ITIMER_REAL, &timeout, NULL);
204 if (ret < 0) {
215 ret = setitimer(ITIMER_REAL, &cancel, NULL);
216 if (ret < 0) {
221 ret = sigaction(SIGALRM, &oldaction, NULL);
222 if (ret <
246 int ret; local
279 int ret = TEMP_FAILURE_RETRY(write(out_fd, &buf, 1)); local
371 int ret = 0; local
397 int ret = execvp(path, args.data()); local
[all...]
/build/make/tools/ijar/
H A Dzip.cc458 int ret = inflateInit2(&stream, -MAX_WBITS); local
459 if (ret != Z_OK) {
460 error("inflateInit: %d\n", ret);
471 ret = inflate(&stream, Z_SYNC_FLUSH);
475 switch (ret) {
513 error("zlib returned error code %d during inflate.\n", ret);
/build/tools/ijar/
H A Dzip.cc458 int ret = inflateInit2(&stream, -MAX_WBITS); local
459 if (ret != Z_OK) {
460 error("inflateInit: %d\n", ret);
471 ret = inflate(&stream, Z_SYNC_FLUSH);
475 switch (ret) {
513 error("zlib returned error code %d during inflate.\n", ret);

Completed in 771 milliseconds