Lines Matching refs:globalval
639 void *globalval = tls_get(globalkey); in xmlGlobalStateCleanup() local
641 if (globalval != NULL) in xmlGlobalStateCleanup()
642 xmlFreeGlobalState(globalval); in xmlGlobalStateCleanup()
657 xmlGlobalState *globalval; in xmlGetGlobalState() local
664 if ((globalval = (xmlGlobalState *) in xmlGetGlobalState()
673 return (globalval); in xmlGetGlobalState()
682 xmlGlobalState *globalval; in xmlGetGlobalState()
687 globalval = (xmlGlobalState *) TlsGetValue(globalkey); in xmlGetGlobalState()
690 globalval = (xmlGlobalState *) (p ? p->memory : NULL); in xmlGetGlobalState()
692 if (globalval == NULL) { in xmlGetGlobalState()
726 return (globalval); in xmlGetGlobalState()
729 xmlGlobalState *globalval; in xmlGetGlobalState()
733 if ((globalval = (xmlGlobalState *) tls_get(globalkey)) == NULL) { in xmlGetGlobalState()
742 return (globalval); in xmlGetGlobalState()
1022 xmlGlobalState *globalval = NULL; local
1026 globalval = (xmlGlobalState *) (p ? p->memory : NULL);
1027 if (globalval) {
1028 xmlFreeGlobalState(globalval);