Lines Matching refs:tmp_str
2114 smart_str tmp_str = {0, 0}; local
2115 conn->m->tx_cor_options_to_string(conn, &tmp_str, flags);
2116 smart_str_0(&tmp_str);
2125 name_esc? name_esc:"", tmp_str.s? ZSTR_VAL(tmp_str.s):"");
2126 smart_str_free(&tmp_str);
2158 smart_str tmp_str = {0, 0}; local
2160 if (tmp_str.s) {
2161 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
2163 smart_str_appendl(&tmp_str, "WITH CONSISTENT SNAPSHOT", sizeof("WITH CONSISTENT SNAPSHOT") - 1);
2169 smart_str_free(&tmp_str);
2172 if (tmp_str.s && ZSTR_LEN(tmp_str.s)) {
2173 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
2175 smart_str_appendl(&tmp_str, "READ WRITE", sizeof("READ WRITE") - 1);
2177 if (tmp_str.s && ZSTR_LEN(tmp_str.s)) {
2178 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1);
2180 smart_str_appendl(&tmp_str, "READ ONLY", sizeof("READ ONLY") - 1);
2183 smart_str_0(&tmp_str);
2188 …ntf(&query, 0, "START TRANSACTION%s %s", name_esc? name_esc:"", tmp_str.s? ZSTR_VAL(tmp_str.s):"");
2189 smart_str_free(&tmp_str);