Home | History | Annotate | Download | only in include

Lines Matching defs:nLen

185 			int nLen = m_pInfo->m_pJsPlatform->Field_browse(m_pInfo->m_pJsPlatform, NULL, 0);

186 if(nLen <= 0)
188 char* pbuff = new char[nLen];
190 memset(pbuff, 0, nLen);
193 nLen = m_pInfo->m_pJsPlatform->Field_browse(m_pInfo->m_pJsPlatform, pbuff, nLen);
194 CFX_ByteString bsRet = CFX_ByteString(pbuff, nLen);
206 int nLen = m_pInfo->m_pJsPlatform->Doc_getFilePath(m_pInfo->m_pJsPlatform, NULL, 0);
207 if(nLen <= 0)
209 char* pbuff = new char[nLen];
211 memset(pbuff, 0, nLen);
214 nLen = m_pInfo->m_pJsPlatform->Doc_getFilePath(m_pInfo->m_pJsPlatform, pbuff, nLen);
215 CFX_ByteString bsRet = CFX_ByteString(pbuff, nLen);