Lines Matching refs:pKey
667 pEnvList->pKey = *pBegin; in parseEnv()
1130 if (( *pEnv->pKey == '\000' )&& in lsapi_changeUGid()
1131 ( strcmp( pEnv->pKey+1, "SUEXEC_AUTH" ) == 0 )) in lsapi_changeUGid()
1135 if (( *pEnv->pKey == '\000' )&& in lsapi_changeUGid()
1136 ( strcmp( pEnv->pKey+1, "SUEXEC_UGID" ) == 0 )) in lsapi_changeUGid()
2201 char *pKey; in GetHeaderVar() local
2209 pKey = pReq->m_pHttpHeader + pCur->nameOff; in GetHeaderVar()
2211 pKeyEnd = pKey + keyLen; in GetHeaderVar()
2214 while(( pKey < pKeyEnd )&&( *p )) in GetHeaderVar()
2216 char ch = toupper( *pKey ); in GetHeaderVar()
2219 ++p; ++pKey; in GetHeaderVar()
2221 if (( pKey == pKeyEnd )&& (!*p )) in GetHeaderVar()
2250 if ( strcmp( name, pBegin->pKey ) == 0 ) in LSAPI_GetEnv_r()
2311 char *pKey; in LSAPI_ForeachOrgHeader_r() local
2318 pKey = pReq->m_pHttpHeader + pCur->nameOff; in LSAPI_ForeachOrgHeader_r()
2320 *(pKey + keyLen ) = 0; in LSAPI_ForeachOrgHeader_r()
2324 headers[count]._name = pKey; in LSAPI_ForeachOrgHeader_r()
2378 char *pKey; in LSAPI_ForeachHeader_r() local
2386 pKey = pReq->m_pHttpHeader + pCur->nameOff; in LSAPI_ForeachHeader_r()
2390 pKeyEnd = pKey + keyLen; in LSAPI_ForeachHeader_r()
2394 while( pKey < pKeyEnd ) in LSAPI_ForeachHeader_r()
2396 char ch = *pKey++; in LSAPI_ForeachHeader_r()
2427 ret = (*fn)( pEnv->pKey, pEnv->keyLen, in EnvForeach()