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

  /external/chromium_org/third_party/libxml/src/
threads.c 668 xmlGlobalState *tsd = xmlNewGlobalState(); local
669 if (tsd == NULL)
672 pthread_setspecific(globalkey, tsd);
673 return (tsd);
695 xmlGlobalState *tsd = xmlNewGlobalState();
697 if (tsd == NULL)
704 xmlFreeGlobalState(tsd);
707 p->memory = tsd;
712 TlsSetValue(globalkey, tsd);
726 return (tsd);
    [all...]
  /external/libxml2/
threads.c 670 xmlGlobalState *tsd = xmlNewGlobalState(); local
671 if (tsd == NULL)
674 pthread_setspecific(globalkey, tsd);
675 return (tsd);
697 xmlGlobalState *tsd = xmlNewGlobalState();
699 if (tsd == NULL)
706 xmlFreeGlobalState(tsd);
709 p->memory = tsd;
714 TlsSetValue(globalkey, tsd);
728 return (tsd);
    [all...]

Completed in 2263 milliseconds