HomeSort by relevance Sort by last modified time
    Searched full:cmd_param_buf (Results 1 - 1 of 1) sorted by null

  /external/qemu/android/protocol/
core-commands-impl.c 70 void* cmd_param_buf; member in struct:CoreCmdImpl
81 /* Properly initializes cmd_param_buf field in CoreCmdImpl instance to receive
89 corecmd->cmd_param_buf = &corecmd->cmd_param[0];
92 corecmd->cmd_param_buf = qemu_malloc(size);
94 return corecmd->cmd_param_buf;
97 /* Properly frees cmd_param_buf field in CoreCmdImpl instance.
102 if (corecmd->cmd_param_buf != &corecmd->cmd_param[0]) {
103 qemu_free(corecmd->cmd_param_buf);
104 corecmd->cmd_param_buf = &corecmd->cmd_param[0];
360 corecmd->cmd_param_buf,
    [all...]

Completed in 460 milliseconds