HomeSort by relevance Sort by last modified time
    Searched defs:ut (Results 1 - 23 of 23) sorted by null

  /bionic/libc/bionic/
utmp.c 46 static FILE *ut; variable
52 if (ut == NULL)
54 (void)fseeko(ut, (off_t)0, SEEK_SET);
60 if (ut == NULL) {
61 if ((ut = fopen(utfile, "r")) == NULL)
64 if (fread(&utmp, sizeof(utmp), 1, ut) == 1)
72 if (ut != NULL) {
73 (void)fclose(ut);
74 ut = NULL;
  /external/chromium/third_party/icu/source/common/
ubrk.cpp 170 UText ut = UTEXT_INITIALIZER; local
171 utext_openUChars(&ut, text, textLength, status);
172 brit->setText(&ut, *status);
utext.cpp 33 utext_access(UText *ut, int64_t index, UBool forward) {
34 return ut->pFuncs->access(ut, index, forward);
40 utext_moveIndex32(UText *ut, int32_t delta) {
44 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) {
47 c = ut->chunkContents[ut->chunkOffset]
554 UText ut; member in struct:ExtendedUText
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 79 struct utsname ut; local
106 if ((uname(&ut) == 0) &&
107 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
108 (ut.release[2] < '6') && (ut.release[3] == '.')))
  /external/icu4c/common/
ubrk.cpp 170 UText ut = UTEXT_INITIALIZER; local
171 utext_openUChars(&ut, text, textLength, status);
172 brit->setText(&ut, *status);
utext.cpp 34 utext_access(UText *ut, int64_t index, UBool forward) {
35 return ut->pFuncs->access(ut, index, forward);
41 utext_moveIndex32(UText *ut, int32_t delta) {
45 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) {
48 c = ut->chunkContents[ut->chunkOffset]
910 UText ut; member in struct:ExtendedUText
    [all...]
  /external/e2fsprogs/debugfs/
dump.c 70 struct utimbuf ut; local
94 ut.actime = inode->i_atime;
95 ut.modtime = inode->i_mtime;
96 if (utime(name, &ut) == -1)
  /external/e2fsprogs/util/
subst.c 315 struct utimbuf ut; local
386 ut.actime = stbuf.st_atime;
387 ut.modtime = time(0);
388 if (utime(outfn, &ut) < 0)
  /build/libs/host/
CopyFile.c 145 struct utimbuf ut; local
152 ut.actime = pSrcStat->st_atime;
153 ut.modtime = pSrcStat->st_mtime;
154 if (utime(dst, &ut) != 0) {
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 382 struct utsname ut; local
442 (uname(&ut) == 0) &&
443 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
444 (ut.release[2] == '4') && (ut.release[3] == '.') &&
445 (ut.release[4] == '1') && (ut.release[5] >= '0') &&
446 (ut.release[5] < '8')) &&
  /external/chromium/third_party/icu/source/test/cintltst/
cbiapts.c 320 UText *ut = NULL; local
333 ut = utext_openUChars(ut, s2, -1, &status);
334 ubrk_setUText(bb, ut, &status);
340 utext_close(ut);
673 UText *ut = utext_openUTF8(NULL, UTF8Str, -1, &status); local
682 ubrk_setUText(bi, ut, &status);
703 utext_close(ut);
  /external/dropbear/
loginrec.c 166 void set_utmp_time(struct logininfo *li, struct utmp *ut);
167 void construct_utmp(struct logininfo *li, struct utmp *ut);
171 void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
172 void construct_utmpx(struct logininfo *li, struct utmpx *ut);
477 set_utmp_time(struct logininfo *li, struct utmp *ut)
480 ut->ut_tv.tv_sec = li->tv_sec;
481 ut->ut_tv.tv_usec = li->tv_usec;
484 ut->ut_time = li->tv_sec;
491 struct utmp *ut)
496 memset(ut, '\0', sizeof(*ut))
741 struct utmp ut; local
762 struct utmp ut; local
928 struct utmp ut; local
938 struct utmp ut; local
996 struct utmp ut; local
1221 struct utmp *ut; local
    [all...]
  /external/icu4c/test/cintltst/
cbiapts.c 322 UText *ut = NULL; local
335 ut = utext_openUChars(ut, s2, -1, &status);
336 ubrk_setUText(bb, ut, &status);
342 utext_close(ut);
675 UText *ut = utext_openUTF8(NULL, UTF8Str, -1, &status); local
684 ubrk_setUText(bi, ut, &status);
705 utext_close(ut);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 402 long ut = SystemClock.elapsedRealtime() / 1000; local
404 if (ut == 0) {
405 ut = 1;
408 mUptime.setSummary(convert(ut));
  /external/chromium/third_party/icu/source/test/intltest/
rbbiapts.cpp 321 UText *ut = utext_openUTF8(NULL, s1, -1, &status); local
322 wordIter1->setText(ut, status);
368 utext_close(ut);
    [all...]
utxttest.cpp 26 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
164 UText *ut = NULL; local
190 ut = utext_openUChars(NULL, buf, -1, &status);
192 TestAccess(sa, ut, cpCount, cpMap);
193 utext_close(ut);
201 ut = utext_openUChars(NULL, buf, saLen, &status);
203 TestAccess(sa, ut, cpCount, cpMap);
204 utext_close(ut);
210 ut = utext_openUnicodeString(NULL, &sa, &status);
212 TestAccess(sa, ut, cpCount, cpMap)
847 UText ut; local
856 UText ut = UTEXT_INITIALIZER; local
877 UText ut = UTEXT_INITIALIZER; local
911 UText ut = UTEXT_INITIALIZER; local
935 UText *ut = NULL; local
1008 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); local
1081 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); local
1149 UText *ut = utext_openReplaceable(NULL, &u16str, &status); local
1215 UText *ut = NULL; local
1435 UText *ut = utext_openUChars(NULL, s, -1, &status); local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 1654 struct utmp ut; local
    [all...]
  /frameworks/base/cmds/installd/
commands.c 561 struct utimbuf ut; local
646 ut.actime = apk_stat.st_atime;
647 ut.modtime = apk_stat.st_mtime;
648 utime(dex_path, &ut);
    [all...]
  /external/e2fsprogs/misc/
mke2fs.c 965 struct utsname ut; local
1019 if (uname(&ut)) {
1023 linux_version_code = parse_version_number(ut.release);
    [all...]
  /external/icu4c/test/intltest/
utxttest.cpp 26 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
166 UText *ut = NULL; local
192 ut = utext_openUChars(NULL, buf, -1, &status);
194 TestAccess(sa, ut, cpCount, cpMap);
195 utext_close(ut);
203 ut = utext_openUChars(NULL, buf, saLen, &status);
205 TestAccess(sa, ut, cpCount, cpMap);
206 utext_close(ut);
212 ut = utext_openUnicodeString(NULL, &sa, &status);
214 TestAccess(sa, ut, cpCount, cpMap)
1321 UText ut; local
1330 UText ut = UTEXT_INITIALIZER; local
1351 UText ut = UTEXT_INITIALIZER; local
1385 UText ut = UTEXT_INITIALIZER; local
1409 UText *ut = NULL; local
1482 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); local
1555 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); local
1623 UText *ut = utext_openReplaceable(NULL, &u16str, &status); local
1689 UText *ut = NULL; local
1909 UText *ut = utext_openUChars(NULL, s, -1, &status); local
    [all...]
  /external/ppp/pppd/
sys-linux.c 2148 struct utmp ut, *utp; local
    [all...]
  /external/strace/
file.c 1906 long ut[2]; local
    [all...]
  /hardware/ril/libril/
ril.cpp 845 uint8_t ut; local
855 status = p.read(&ut,sizeof(ut));
856 rcsm.bIsServicePresent = (uint8_t) ut;
873 status = p.read(&ut,sizeof(ut));
874 rcsm.sAddress.number_of_digits= (uint8_t) ut;
878 status = p.read(&ut,sizeof(ut));
879 rcsm.sAddress.digits[digitCount] = (uint8_t) ut;
1090 uint32_t ut; local
    [all...]

Completed in 505 milliseconds