How do you call a (linear) function (or the point), which breaks down to 0 on ordinate (axis y), as soon as you breach a certain x1 value?

How do you call a (linear) function (or the point), which breaks down to 0 on ordinate (axis y), as soon as you breach a certain x1 value?

You could describe it as piecewise linear, and write it e.g. $f:\mathbb{R}^+ \rightarrow \mathbb{R}$ defined by $$f(x)=\begin{cases}mx+y_1-mx_1 & \text{if } 0 \leq x < x_1 \\ 0 & \text{if } x \geq x_1 \end{cases}$$ where $m$ is the slope (in this case, it'll be negative).
If "break down" means we want the function undefined (instead of $0$), we can define the domain of the function as $[0,x_1]$.
Assumming you meant a vertical segment at $x=x_1$, this is not (the graph of) a function at all, and even less (if that were possible) a linear function. A (non-linear) function could make a jump at $x=x_1$, but it would need to have a unique value at $x_1$ (not a whole range of values). Your description also suggests it would have to have (unique) values beyond $x_1$ (it wouldn't have to if you defined a function with domain $[0,x_1]$ but I don't think you intended that).