Lines Matching defs:output
107 CHAR *output = NULL;
121 output = (CHAR*)LOS_MemAlloc(m_aucSysMem0, len + 1);
122 if (output == NULL) {
126 (VOID)memset_s(output, len + 1, 0, len + 1);
127 /* Backup the 'output' start address */
128 outputBak = output;
146 *output = *cmdKey;
147 output++;
149 *output = '\0';
150 /* Restore the 'output' start address */
151 output = outputBak;
152 len = strlen(output);
155 output++;
159 ret = strncpy_s(cmdOut, size, output, len);
162 (VOID)LOS_MemFree(m_aucSysMem0, output);
167 (VOID)LOS_MemFree(m_aucSysMem0, output);