Searched refs:result (Results 51 - 75 of 75) sorted by relevance

123

/system/extras/showmap/
H A Dshowmap.c319 int result = 0; local
347 result = 1;
362 result = 1;
365 return result;
/system/core/sh/
H A Deval.c552 evalbackcmd(union node *n, struct backcmd *result) argument
559 result->fd = -1;
560 result->buf = NULL;
561 result->nleft = 0;
562 result->jp = NULL;
575 evalcommand(n, EV_BACKCMD, result);
596 result->fd = pip[0];
597 result->jp = jp;
603 result->fd, result
[all...]
H A Dexpand.c344 * evaluate, place result in (backed up) result, adjust string position.
350 int result; local
360 * enough space for the result, which may be bigger
391 result = arith(p+2);
392 fmtstr(p, 12, "%d", result);
399 result = expdest - p + 1;
400 STADJUST(-result, expdest);
1498 int result; local
1508 result
[all...]
H A Darith_lex.c522 #define YY_INPUT(buf,result,max) \
523 result = (*buf = *arith_buf++) ? 1 : YY_NULL;
587 * is returned in "result".
590 #define YY_INPUT(buf,result,max_size) \
602 result = n; \
607 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
H A Darith.c682 /* Print the symbols being reduced, and their result. */
1290 /* Now `shift' the result of the reduction. Determine what state
1510 long result;
1515 result = yyparse();
1519 return (result);
1506 long result; local
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp290 int result = reply.readInt32(); local
291 if (result != (int) (iter + iter + 3)) {
292 cerr << "Unexpected result for iteration " << iter << endl;
293 cerr << " result: " << result << endl;
/system/core/adb/
H A Dsysdeps_win32.c261 DWORD result; local
273 result = SetFilePointer( f->fh_handle, pos, NULL, method );
274 if (result == INVALID_SET_FILE_POINTER) {
280 return (int)result;
516 int result = recv( f->fh_socket, buf, len, 0 ); local
517 if (result == SOCKET_ERROR) {
519 result = -1;
521 return result;
527 int result = send( f->fh_socket, buf, len, 0 ); local
528 if (result
2039 int result = 0; local
[all...]
H A Dadb.c770 int result = 0; local
777 result += len;
785 return result;
1149 int result = execl(path, "adb", "-P", str_port, "fork-server", "server", NULL);
1151 fprintf(stderr, "OOPS! execl returned %d, errno: %d\n", result, errno);
H A Dsockets.c65 asocket *result = NULL; local
70 result = s;
76 return result;
/system/core/liblog/
H A Dfake_log_device.c323 int result = 0; local
330 return result + w;
332 result += w;
334 return result;
507 * a loop can result in interleaved data. This can be alleviated
/system/core/libnl_2/genl/
H A Dgenl.c93 int genl_ctrl_alloc_cache(struct nl_sock *sock, struct nl_cache **result) argument
242 *result = (struct nl_cache *) nl80211_genl_id;
/system/core/libutils/
H A DVectorImpl.cpp347 ssize_t result = NO_ERROR;
349 result = insertAt(mCount, size - mCount);
351 result = removeItemsAt(size, mCount - size);
353 return result < 0 ? result : size;
/system/core/logcat/
H A Dlogcat.cpp258 int result; local
274 result = select(max + 1, &readset, NULL, NULL, sleep ? NULL : &timeout);
275 } while (result == -1 && errno == EINTR);
277 if (result >= 0) {
312 if (result == 0) {
/system/core/init/
H A Dproperty_service.c158 int result = 0; local
170 result = 1;
174 return result;
H A Dinit.c580 int result = -1; local
593 result = 0;
628 result = 0;
638 return result;
/system/core/include/utils/
H A DRefBase.h443 sp<T> result;
444 if (m_ptr && m_refs->attemptIncStrong(&result)) {
445 result.set_pointer(m_ptr);
447 return result;
/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp86 * without triggering a warning by not using the result of release().
700 int result = 0; local
702 result |= tmp[i] ^ signedData[i];
705 return result == 0 ? 0 : -1;
/system/vold/
H A DCommandListener.cpp298 struct dirent *result; local
300 while (!readdir_r(d, dent, &result) && result != NULL) {
/system/core/include/private/pixelflinger/
H A Dggl_context.h264 uint32_t result = local
269 return (result == 0);
/system/core/libcutils/
H A Dproperties.c217 int result = -1; local
/system/core/toolbox/
H A Ddd.c1161 long long result; local
1163 if (sscanf(arg, "%lld", &result) == 0)
1164 result = def;
1165 return result;
/system/core/sdcard/
H A Dfuse.h514 __s32 result; member in struct:fuse_ioctl_out
/system/extras/ext4_utils/
H A Dallocate.c720 int result = sparse_file_add_data(info.sparse_file, block, info.block_size, block_num); local
721 if (result != 0) {
722 error("get_xattr: sparse_file_add_data failure %d", result);
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c211 uint8_t result; local
/system/security/keystore/
H A Dkeystore.cpp964 bool result = true; local
981 result = false;
986 return result;

Completed in 315 milliseconds

123