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

  /sdk/emulator/opengl/host/libs/libOpenglRender/
ThreadInfo.cpp 20 static __thread RenderThreadInfo *tinfo = NULL; variable
24 if (!tinfo) {
25 tinfo = new RenderThreadInfo();
27 return tinfo;
FrameBuffer.cpp 687 RenderThreadInfo *tinfo = getRenderThreadInfo(); local
691 draw = tinfo->currDrawSurf;
692 read = tinfo->currReadSurf;
708 tinfo->currContext = ctx;
709 tinfo->currDrawSurf = draw;
710 tinfo->currReadSurf = read;
712 if (ctx->isGL2()) tinfo->m_gl2Dec.setContextData(&ctx->decoderContextData());
713 else tinfo->m_glDec.setContextData(&ctx->decoderContextData());
716 tinfo->m_glDec.setContextData(NULL);
717 tinfo->m_gl2Dec.setContextData(NULL)
    [all...]
  /sdk/emulator/opengl/system/OpenglSystemCommon/
HostConnection.cpp 52 EGLThreadInfo *tinfo = getEGLThreadInfo(); local
53 if (!tinfo) {
57 if (tinfo->hostConn == NULL) {
103 tinfo->hostConn = con;
106 return tinfo->hostConn;
  /external/iptables/extensions/
libxt_NFQUEUE.c 98 const struct xt_NFQ_info *tinfo = local
100 printf(" NFQUEUE num %u", tinfo->queuenum);
106 const struct xt_NFQ_info_v1 *tinfo = (const void *)target->data; local
107 unsigned int last = tinfo->queues_total;
110 last += tinfo->queuenum - 1;
111 printf(" NFQUEUE balance %u:%u", tinfo->queuenum, last);
113 printf(" NFQUEUE num %u", tinfo->queuenum);
129 const struct xt_NFQ_info *tinfo = local
132 printf(" --queue-num %u", tinfo->queuenum);
137 const struct xt_NFQ_info_v1 *tinfo = (const void *)target->data local
160 struct xt_NFQ_info_v1 *tinfo = (void *)t->data; local
    [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
WebKitAccessibleHyperlink.cpp 369 static const GTypeInfo tinfo = { local
387 GType type = g_type_register_static(ATK_TYPE_HYPERLINK, "WebKitAccessibleHyperlink", &tinfo, GTypeFlags(0));
AccessibilityObjectWrapperAtk.cpp 730 static const GTypeInfo tinfo = { local
744 "WebKitAccessible", &tinfo, GTypeFlags(0));
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.cc 298 TransportInfo tinfo(CN_OTHER, NS_GINGLE_P2P, Candidates());
301 &tinfo.candidates, error))
309 tinfos->push_back(tinfo);
317 for (Candidates::iterator cand = tinfo.candidates.begin();
318 cand != tinfo.candidates.end(); cand++) {
345 TransportInfo tinfo(content.name, transport_type, Candidates());
348 &tinfo.candidates, error))
351 tinfos->push_back(tinfo);
406 for (TransportInfos::const_iterator tinfo = tinfos.begin();
407 tinfo != tinfos.end(); ++tinfo)
641 const TransportInfo* tinfo = local
    [all...]
  /bionic/libc/bionic/
pthread_debug.c 821 ThreadInfo* tinfo = get_thread_info(gettid()); local
823 mrl->prev = tinfo->mrl;
824 tinfo->mrl = mrl;
828 ThreadInfo* tinfo = get_thread_info(gettid()); local
835 if (tinfo->mrl == mrl) {
836 tinfo->mrl = mrl->next;
841 ThreadInfo* tinfo = get_thread_info(gettid()); local
842 return tinfo->mrl;
  /external/clang/lib/CodeGen/
CGBlocks.cpp 316 std::pair<CharUnits,CharUnits> tinfo local
318 maxFieldAlign = std::max(maxFieldAlign, tinfo.second);
320 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first, 0, llvmType));
336 std::pair<CharUnits,CharUnits> tinfo local
338 maxFieldAlign = std::max(maxFieldAlign, tinfo.second);
340 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first,
    [all...]

Completed in 134 milliseconds