• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7800-V1.0.2.28/package/qca-nss-drv/src/

Lines Matching defs:line

37 extern int32_t nss_tx_rx_virt_if_copy_stats(int32_t if_num, int i, char *line);
421 * max output lines = #stats + start tag line + end tag line + three blank lines
513 * max output lines = #stats + start tag line + end tag line + three blank lines
586 * max output lines = #stats + start tag line + end tag line + three blank lines
678 * max output lines = #stats + start tag line + end tag line + three blank lines
751 * max output lines = #stats + start tag line + end tag line + three blank lines
843 * max output lines = #stats + start tag line + end tag line + three blank lines
916 * max output lines = #stats + start tag line + end tag line + three blank lines
988 * max output lines = #stats + start tag line + end tag line + three blank lines
1036 * max output lines = #stats + start tag line + end tag line + three blank lines
1249 * max output lines = #stats + start tag line + end tag line + three blank lines
1300 static ssize_t nss_stats_capwap_encap(char *line, int len, int i, struct nss_capwap_tunnel_stats *s)
1344 return (snprintf(line, len, "%s = %llu\n", header[i], tcnt));
1350 static ssize_t nss_stats_capwap_decap(char *line, int len, int i, struct nss_capwap_tunnel_stats *s)
1387 return (snprintf(line, len, "%s = %llu (n2h = %llu)\n", header[i], tcnt, s->rx_n2h_queue_full_drops));
1401 return (snprintf(line, len, "%s = %llu\n", header[i], tcnt));
1414 char line[80];
1449 bytes = snprintf(line, sizeof(line), "----if_num : %2d----\n", if_num);
1454 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1462 bytes = nss_stats_capwap_encap(line, sizeof(line), start, &stats);
1464 bytes = nss_stats_capwap_decap(line, sizeof(line), start, &stats);
1477 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1520 static ssize_t nss_stats_gre_redir(char *line, int len, int i, struct nss_gre_redir_tunnel_stats *s)
1549 return (snprintf(line, len, "%s = %llu\n", header[i], tcnt));
1562 char line[80];
1588 bytes = snprintf(line, sizeof(line), "\nTunnel if_num: %2d\n", stats.if_num);
1593 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1601 bytes = nss_stats_gre_redir(line, sizeof(line), start, &stats);
1606 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1639 char line[80];
1654 bytes = scnprintf(line, sizeof(line), "if_num %d stats start:\n\n", if_num);
1658 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1668 bytes = nss_wifi_if_copy_stats(if_num, start, line);
1675 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1684 bytes = scnprintf(line, sizeof(line), "if_num %d stats end:\n\n", if_num);
1688 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1720 char line[80];
1735 bytes = scnprintf(line, sizeof(line), "if_num %d stats start:\n\n", if_num);
1739 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1749 bytes = nss_virt_if_copy_stats(if_num, start, line);
1756 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1765 bytes = scnprintf(line, sizeof(line), "if_num %d stats end:\n\n", if_num);
1769 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1801 char line[80];
1816 bytes = scnprintf(line, sizeof(line), "if_num %d stats start:\n\n", if_num);
1820 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1830 bytes = nss_tx_rx_virt_if_copy_stats(if_num, start, line);
1837 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {
1846 bytes = scnprintf(line, sizeof(line), "if_num %d stats end:\n\n", if_num);
1850 if (copy_to_user(ubuf + bytes_read, line, bytes) != 0) {