Lines Matching refs:tmp_str
1744 smart_str tmp_str = {0, 0}; local
1745 conn->m->tx_cor_options_to_string(conn, &tmp_str, flags);
1746 smart_str_0(&tmp_str);
1753 name_esc? name_esc:"", tmp_str.s? ZSTR_VAL(tmp_str.s):"");
1754 smart_str_free(&tmp_str);
1777 smart_str tmp_str = {0, 0}; local
1779 if (tmp_str.s) {
1780 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
1782 smart_str_appendl(&tmp_str, "WITH CONSISTENT SNAPSHOT", sizeof("WITH CONSISTENT SNAPSHOT") - 1);
1785 if (tmp_str.s && ZSTR_LEN(tmp_str.s)) {
1786 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
1788 smart_str_appendl(&tmp_str, "READ WRITE", sizeof("READ WRITE") - 1);
1790 if (tmp_str.s && ZSTR_LEN(tmp_str.s)) {
1791 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
1793 smart_str_appendl(&tmp_str, "READ ONLY", sizeof("READ ONLY") - 1);
1795 smart_str_0(&tmp_str);
1799 …ntf(&query, 0, "START TRANSACTION%s %s", name_esc? name_esc:"", tmp_str.s? ZSTR_VAL(tmp_str.s):"");
1800 smart_str_free(&tmp_str);