summaryrefslogtreecommitdiffstats
path: root/cocci/isc_buffer_allocate_never_fail.spatch
blob: b632e4e3b9d8234d2ba9209992b23754e22ba228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@@
statement S;
expression V;
@@

- V =
  isc_buffer_allocate(...);
- if (V != ISC_R_SUCCESS) S

@@
statement S1, S2;
expression V;
@@

- V =
  isc_buffer_allocate(...);
- if (V == ISC_R_SUCCESS)
  S1
- else S2

@@
expression V;
@@

- V =
  isc_buffer_allocate(...);
- check_result(V, ...);

@@
@@

- CHECK(
  isc_buffer_allocate(...)
- )
  ;

@@
@@

- DO(...,
  isc_buffer_allocate(...)
- )
  ;

@@
@@

- RETERR(
  isc_buffer_allocate(...)
- )
  ;

@@
expression V;
@@

- V =
  isc_buffer_allocate(...);
- assert_int_equal(V, ISC_R_SUCCESS);

@@
expression V;
@@

- V =
  isc_buffer_allocate(...);
- CHECK(..., V);

@@
expression V;
statement S;
@@

- V =
  isc_buffer_allocate(...);
- if (ISC_UNLIKELY(V != ISC_R_SUCCESS)) S

@@
expression V;
@@

- V =
  isc_buffer_allocate(...);
- RUNTIME_CHECK(V == ISC_R_SUCCESS);