Searched defs:result (Results 51 - 57 of 57) sorted by relevance

123

/system/core/sh/
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...]
/system/vold/
H A DVolumeManager.cpp479 int result = 0; local
481 result = Ext4::doMount(loopDevice, mountPoint, true, true, true);
483 result = Fat::doMount(loopDevice, mountPoint, true, true, true, 0, 0, 0227, false);
486 if (result) {
532 int result = 0; local
567 result = -1;
571 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
574 result |= fchmod(fd, 0755);
576 result |= fchmod(fd, privateFile ? 0640 : 0644);
586 result |
965 int result; local
1409 struct dirent *result; local
[all...]
/system/core/include/private/pixelflinger/
H A Dggl_context.h264 uint32_t result = local
269 return (result == 0);
/system/core/libcutils/
H A Dtztime.c273 register long result; local
276 result = (codep[0] & 0x80) ? ~0L : 0;
278 result = (result << 8) | (codep[i] & 0xff);
279 return result;
286 register time_t result; local
289 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0;
291 result = result * 256 + (codep[i] & 0xff);
292 return result;
581 register int result; local
1189 register struct tm * result; local
1313 register struct tm * result; local
1648 register int result; local
[all...]
/system/core/sdcard/
H A Dfuse.h514 __s32 result; member in struct:fuse_ioctl_out
/system/security/keystore/
H A Dkeystore.cpp576 bool result = true; local
579 result = false;
584 return result;
/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...]

Completed in 669 milliseconds

123