Home | History | Annotate | Download | only in HAL

Lines Matching refs:strParams

2076     char* strParams = NULL;
2079 strParams = (char *)malloc(sizeof(char)*(str.length()+1));
2080 if(strParams != NULL){
2081 memset(strParams, 0, sizeof(char)*(str.length()+1));
2082 strncpy(strParams, str.string(), str.length());
2083 strParams[str.length()] = 0;
2085 return strParams;