Lines Matching refs:pTmp
79 char *pTmp = NULL, *pEnd = NULL, *pBegin = NULL; in get_cfg_Item() local
94 pTmp = strchr(lineBuf, '='); in get_cfg_Item()
95 if (pTmp == NULL) in get_cfg_Item()
98 pTmp = strstr(lineBuf, pKey); in get_cfg_Item()
99 if (pTmp == NULL) in get_cfg_Item()
102 pTmp = pTmp + strlen(pKey); in get_cfg_Item()
103 pTmp = strchr(pTmp, '='); in get_cfg_Item()
104 if (pTmp == NULL) in get_cfg_Item()
107 pTmp = pTmp + 1; in get_cfg_Item()
110 if (*pTmp == ' ') { in get_cfg_Item()
111 pTmp ++ ; in get_cfg_Item()
113 pBegin = pTmp; in get_cfg_Item()
122 if ((*pTmp == ' ' || *pTmp == '\n')) in get_cfg_Item()
125 pTmp ++; in get_cfg_Item()
127 pEnd = pTmp; in get_cfg_Item()