Lines Matching refs:pch
677 char * pch; in parseConfigFile() local
690 pch = strtok(s," =;"); in parseConfigFile()
691 if (strcmp("GTO_DEV", pch) == 0) { in parseConfigFile()
692 pch = strtok (NULL, " =;"); in parseConfigFile()
693 ALOGD("SecureElement:%s Defined node : %s", __func__, pch); in parseConfigFile()
694 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
695 se_gto_set_gtodev(ctx, pch); in parseConfigFile()
697 } else if (strcmp("GTO_DEBUG", pch) == 0) { in parseConfigFile()
698 pch = strtok(NULL, " =;"); in parseConfigFile()
699 ALOGD("SecureElement:%s Log state : %s", __func__, pch); in parseConfigFile()
700 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
701 if (strcmp(pch, "enable") == 0) { in parseConfigFile()