Home
last modified time | relevance | path

Searched refs:tinfo (Results 1 – 3 of 3) sorted by relevance

/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DHostConnection.cpp56 HostConnection *HostConnection::getWithThreadInfo(EGLThreadInfo* tinfo) { in getWithThreadInfo() argument
62 if (!tinfo) { in getWithThreadInfo()
66 if (tinfo->hostConn == NULL) { in getWithThreadInfo()
113 tinfo->hostConn = con; in getWithThreadInfo()
116 return tinfo->hostConn; in getWithThreadInfo()
120 EGLThreadInfo *tinfo = getEGLThreadInfo(); in exit() local
121 if (!tinfo) { in exit()
125 if (tinfo->hostConn) { in exit()
126 delete tinfo->hostConn; in exit()
127 tinfo->hostConn = NULL; in exit()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtarfile.py2571 tinfo = TarInfo(zinfo.filename)
2572 tinfo.size = len(bytes)
2573 tinfo.mtime = calendar.timegm(zinfo.date_time)
2574 self.tarfile.addfile(tinfo, StringIO(bytes))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_datetime.py2267 tinfo = PicklableFixedOffset(-300, 'cookie')
2268 orig = self.theclass(5, 6, 7, tzinfo=tinfo)
2493 tinfo = PicklableFixedOffset(-300, 'cookie')
2494 orig = self.theclass(*args, **{'tzinfo': tinfo})
2639 self.assertRaises(TypeError, meth, tinfo=off42)
2677 self.assertRaises(TypeError, meth, ts, tinfo=off42)