Lines Matching refs:pch
720 char * pch; in parseConfigFile() local
733 pch = strtok(s," =;"); in parseConfigFile()
734 if (strcmp("GTO_DEV", pch) == 0) { in parseConfigFile()
735 pch = strtok (NULL, " =;"); in parseConfigFile()
736 ALOGD("SecureElement:%s Defined node : %s", __func__, pch); in parseConfigFile()
737 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
738 se_gto_set_gtodev(ctx, pch); in parseConfigFile()
740 } else if (strcmp("GTO_DEBUG", pch) == 0) { in parseConfigFile()
741 pch = strtok(NULL, " =;"); in parseConfigFile()
742 ALOGD("SecureElement:%s Log state : %s", __func__, pch); in parseConfigFile()
743 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
744 if (strcmp(pch, "enable") == 0) { in parseConfigFile()