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

1 2

  /bionic/libc/upstream-netbsd/lib/libc/gen/
utmp.c 47 static FILE *ut; variable
53 if (ut == NULL)
55 (void)fseeko(ut, (off_t)0, SEEK_SET);
61 if (ut == NULL) {
64 if ((ut = fopen(utfile, "re")) == NULL)
66 if (fstat(fileno(ut), &st) == -1)
75 if (fread(&utmp, sizeof(utmp), 1, ut) == 1)
78 (void)fclose(ut);
85 if (ut != NULL) {
86 (void)fclose(ut);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 51 public static TextWriter @out property in class:Antlr.Runtime.JavaExtensions.JSystem
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 50 public static TextWriter @out property in class:Antlr.Runtime.JavaExtensions.JSystem
  /external/e2fsprogs/lib/blkid/
getsize.c 94 struct utsname ut; local
96 if ((uname(&ut) == 0) &&
97 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
98 (ut.release[2] < '6') && (ut.release[3] == '.')))
probe.c 248 struct utsname ut; local
257 if (uname(&ut))
259 cp = ut.release;
    [all...]
  /external/icu/icu4c/source/common/
ubrk.cpp 169 UText ut = UTEXT_INITIALIZER; local
170 utext_openUChars(&ut, text, textLength, status);
171 ((BreakIterator*)bi)->setText(&ut, *status);
utext.cpp 39 utext_access(UText *ut, int64_t index, UBool forward) {
40 return ut->pFuncs->access(ut, index, forward);
46 utext_moveIndex32(UText *ut, int32_t delta) {
50 if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) {
53 c = ut->chunkContents[ut->chunkOffset]
569 UText ut; member in struct:ExtendedUText
    [all...]
  /external/toybox/toys/pending/
last.c 59 struct utmp *ut = (struct utmp *)l->arg; local
61 if (!strncmp(ut->ut_line, devname, UT_LINESIZE)) {
89 struct utmp ut; local
104 loc -= sizeof(ut);
109 xreadall(fd, &ut, sizeof(ut));
110 *tm = ut.ut_tv.tv_sec;
111 if (*ut.ut_line == '~') {
112 if (!strcmp(ut.ut_user, "runlevel")) ut.ut_type = RUN_LVL
    [all...]
  /external/e2fsprogs/debugfs/
dump.c 73 struct utimbuf ut; local
94 ut.actime = inode->i_atime;
95 ut.modtime = inode->i_mtime;
96 if (utime(name, &ut) == -1)
  /build/make/tools/libhost/
CopyFile.c 162 struct utimbuf ut; local
169 ut.actime = pSrcStat->st_atime;
170 ut.modtime = pSrcStat->st_mtime;
172 ut.modtime += 1;
173 if (utime(dst, &ut) != 0) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 53 TextWriter @out; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 56 TextWriter @out; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 121 UCharsTrieBuilder *ut; member in class:DataDict
129 DataDict(UBool isBytesTrie, UErrorCode &status) : bt(NULL), ut(NULL),
134 ut = new UCharsTrieBuilder(status);
140 delete ut;
200 if (ut) { ut->add(word, value, status); }
210 ut->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, s, status);
  /external/pdfium/third_party/lcms2-2.6/src/
cmswtpnt.c 99 cmsFloat64Number ut; // u coord of intersection w/ blackbody locus member in struct:__anon29380
106 // {Mirek, Ut, Vt, Tt }
166 uj = isotempdata[j].ut;
  /external/openssh/
loginrec.c 191 void set_utmp_time(struct logininfo *li, struct utmp *ut);
192 void construct_utmp(struct logininfo *li, struct utmp *ut);
196 void set_utmpx_time(struct logininfo *li, struct utmpx *ut);
197 void construct_utmpx(struct logininfo *li, struct utmpx *ut);
635 set_utmp_time(struct logininfo *li, struct utmp *ut)
638 ut->ut_tv.tv_sec = li->tv_sec;
639 ut->ut_tv.tv_usec = li->tv_usec;
641 ut->ut_time = li->tv_sec;
647 struct utmp *ut)
653 memset(ut, '\0', sizeof(*ut))
927 struct utmp ut; local
948 struct utmp ut; local
1116 struct utmp ut; local
1126 struct utmp ut; local
1185 struct utmp ut; local
1419 struct utmp *ut; local
1665 struct utmp ut; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 286 long ut = SystemClock.elapsedRealtime() / 1000; local
288 if (ut == 0) {
289 ut = 1;
292 mUptime.setSummary(convert(ut));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java 814 ImsUtInterface ut = mCT.getUtInterface(); local
815 ut.queryCLIR(resp);
830 ImsUtInterface ut = mCT.getUtInterface(); local
831 ut.updateCLIR(clirMode, resp);
847 ImsUtInterface ut = mCT.getUtInterface(); local
848 ut.queryCallForward(getConditionFromCFReason(commandInterfaceCFReason), null, resp);
885 ImsUtInterface ut = mCT.getUtInterface(); local
886 ut.updateCallForward(getActionFromCFAction(commandInterfaceCFAction),
907 ImsUtInterface ut = mCT.getUtInterface(); local
925 ImsUtInterface ut = mCT.getUtInterface(); local
960 ImsUtInterface ut = mCT.getUtInterface(); local
983 ImsUtInterface ut = mCT.getUtInterface(); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 495 struct utsname ut; local
598 (uname(&ut) == 0) &&
599 ((ut.release[0] == '2') && (ut.release[1] == '.') &&
600 (ut.release[2] == '4') && (ut.release[3] == '.') &&
601 (ut.release[4] == '1') && (ut.release[5] >= '0') &&
602 (ut.release[5] < '8')) &&
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 1658 struct utmp ut; local
    [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_localevalue.cpp 676 CFX_Unitime ut; local
677 ut.Set(wYear, static_cast<uint8_t>(wMonth), static_cast<uint8_t>(wDay));
678 unDate = unDate + ut;
  /system/core/logd/
LogTags.cpp 157 tag2uid_const_iterator ut = tag2uid.find(tag); local
158 if (ut != tag2uid.end()) {
160 tag2uid.erase(ut);
162 } else if (ut->second.find(uid) == ut->second.end()) {
163 const_cast<uid_list&>(ut->second).emplace(uid);
579 tag2uid_const_iterator ut = tag2uid.find(tag); local
580 if (ut == tag2uid.end()) {
586 for (auto& it : ut->second) {
693 tag2uid_const_iterator ut = tag2uid.find(Tag) local
726 tag2uid_const_iterator ut = tag2uid.find(Tag); local
819 tag2uid_const_iterator ut = tag2uid.find(tag); local
864 tag2uid_const_iterator ut = tag2uid.find(tag); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 339 UText *ut = NULL; local
352 ut = utext_openUChars(ut, s2, -1, &status);
353 ubrk_setUText(bb, ut, &status);
359 utext_close(ut);
688 UText *ut = utext_openUTF8(NULL, UTF8Str, -1, &status); local
697 ubrk_setUText(bi, ut, &status);
718 utext_close(ut);
    [all...]
  /external/icu/icu4c/source/test/intltest/
utxttest.cpp 29 UText *openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
173 UText *ut = NULL; local
199 ut = utext_openUChars(NULL, buf, -1, &status);
201 TestAccess(sa, ut, cpCount, cpMap);
202 utext_close(ut);
210 ut = utext_openUChars(NULL, buf, saLen, &status);
212 TestAccess(sa, ut, cpCount, cpMap);
213 utext_close(ut);
219 ut = utext_openUnicodeString(NULL, &sa, &status);
221 TestAccess(sa, ut, cpCount, cpMap)
854 UText ut; local
863 UText ut = UTEXT_INITIALIZER; local
884 UText ut = UTEXT_INITIALIZER; local
918 UText ut = UTEXT_INITIALIZER; local
942 UText *ut = NULL; local
1015 UText *ut = utext_openUTF8(NULL, u8str, -1, &status); local
1088 UText *ut = utext_openUnicodeString(NULL, &u16str, &status); local
1156 UText *ut = utext_openReplaceable(NULL, &u16str, &status); local
1222 UText *ut = NULL; local
1442 UText *ut = utext_openUChars(NULL, s, -1, &status); local
1500 UText *ut = utext_openConstUnicodeString(NULL, &s, &status); local
1531 UText ut = UTEXT_INITIALIZER; local
    [all...]
  /external/e2fsprogs/misc/
mke2fs.c 193 struct utsname ut; local
196 if (uname(&ut)) {
201 linux_version_code = parse_version_number(ut.release);
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 1524 struct ureg ut = get_temp(p); local
    [all...]

Completed in 538 milliseconds

1 2