Searched refs:tmp_queue_out (Results 1 – 1 of 1) sorted by relevance
37 static uint16_t tmp_queue_out = 0; variable44 if (NULL != data && len != 0 && ((tmp_queue_in + 1) % ULOG_RESERVED_FS_SIZE) != tmp_queue_out) { in push_fs_tmp()62 if (tmp_queue_in == tmp_queue_out) { in pop_fs_tmp()65 if (NULL != ulog_fs_tmp[tmp_queue_out]) { in pop_fs_tmp()66 strncpy(data, ulog_fs_tmp[tmp_queue_out], len - 1); in pop_fs_tmp()67 aos_free(ulog_fs_tmp[tmp_queue_out]); in pop_fs_tmp()68 ulog_fs_tmp[tmp_queue_out] = NULL; in pop_fs_tmp()69 tmp_queue_out = (tmp_queue_out + 1) % ULOG_RESERVED_FS_SIZE; in pop_fs_tmp()
Completed in 3 milliseconds