Lines Matching refs:pTmp
94 char *pTmp = NULL, *pEnd = NULL, *pBegin = NULL; in get_cfg_Item() local
109 pTmp = strchr(lineBuf, '='); in get_cfg_Item()
110 if (pTmp == NULL) in get_cfg_Item()
113 pTmp = strstr(lineBuf, pKey); in get_cfg_Item()
114 if (pTmp == NULL) in get_cfg_Item()
117 pTmp = pTmp + strlen(pKey); in get_cfg_Item()
118 pTmp = strchr(pTmp, '='); in get_cfg_Item()
119 if (pTmp == NULL) in get_cfg_Item()
122 pTmp = pTmp + 1; in get_cfg_Item()
125 if (*pTmp == ' ') { in get_cfg_Item()
126 pTmp ++ ; in get_cfg_Item()
128 pBegin = pTmp; in get_cfg_Item()
137 if ((*pTmp == ' ' || *pTmp == '\n')) in get_cfg_Item()
140 pTmp ++; in get_cfg_Item()
142 pEnd = pTmp; in get_cfg_Item()