Lines Matching refs:pch
683 char * pch; in parseConfigFile() local
696 pch = strtok(s," =;"); in parseConfigFile()
697 if (strcmp("GTO_DEV", pch) == 0) { in parseConfigFile()
698 pch = strtok(NULL, " =;"); in parseConfigFile()
699 ALOGD("SecureElement:%s Defined node : %s", __func__, pch); in parseConfigFile()
700 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
701 se_gto_set_gtodev(ctx, pch); in parseConfigFile()
703 } else if (strcmp("GTO_DEBUG", pch) == 0) { in parseConfigFile()
704 pch = strtok(NULL, " =;"); in parseConfigFile()
705 ALOGD("SecureElement:%s Log state : %s", __func__, pch); in parseConfigFile()
706 if (strlen(pch) > 0 && strcmp("\n", pch) != 0 && strcmp("\0", pch) != 0 ) { in parseConfigFile()
707 if (strcmp(pch, "enable") == 0) { in parseConfigFile()