• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/curl-83.1.2/curl/tests/unit/

Lines Matching defs:BASE

43 /* BASE is just a define to make us fool around with decently large number so
45 #define BASE 1000000
79 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"},
80 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"},
81 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
82 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"},
85 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"},
86 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"},
87 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
88 {BASE + 10, 0, 10000, 8000, TRUE, -2000, "-2000, overdue 2 seconds"},
91 {BASE + 4, 0, 10000, 0, FALSE, 6000, "6 seconds should be left"},
92 {BASE + 4, 990000, 10000, 0, FALSE, 5010, "5010 ms should be left"},
93 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
94 {BASE + 12, 0, 10000, 0, FALSE, -2000, "-2000, overdue 2 seconds"},
97 {BASE + 4, 0, 10000, 0, FALSE, 6000, "6 seconds should be left"},
98 {BASE + 4, 990000, 10000, 0, FALSE, 5010, "5010 ms should be left"},
99 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
100 {BASE + 12, 0, 10000, 0, FALSE, -2000, "-2000, overdue 2 seconds"},
103 {BASE + 4, 0, 0, 10000, FALSE, 0, "no timeout active"},
104 {BASE + 4, 990000, 0, 10000, FALSE, 0, "no timeout active"},
105 {BASE + 10, 0, 0, 10000, FALSE, 0, "no timeout active"},
106 {BASE + 12, 0, 0, 10000, FALSE, 0, "no timeout active"},
109 {BASE + 4, 0, 0, 10000, TRUE, 6000, "6 seconds should be left"},
110 {BASE + 4, 990000, 0, 10000, TRUE, 5010, "5010 ms should be left"},
111 {BASE + 10, 0, 0, 10000, TRUE, -1, "timeout is -1, expired"},
112 {BASE + 12, 0, 0, 10000, TRUE, -2000, "-2000, overdue 2 seconds"},
115 {BASE + 4, 0, 0, 0, FALSE, 0, "no timeout active"},
116 {BASE + 4, 990000, 0, 0, FALSE, 0, "no timeout active"},
117 {BASE + 10, 0, 0, 0, FALSE, 0, "no timeout active"},
118 {BASE + 12, 0, 0, 0, FALSE, 0, "no timeout active"},
121 {BASE + 4, 0, 0, 0, TRUE, 296000, "no timeout active"},
122 {BASE + 4, 990000, 0, 0, TRUE, 295010, "no timeout active"},
123 {BASE + 10, 0, 0, 0, TRUE, 290000, "no timeout active"},
124 {BASE + 12, 0, 0, 0, TRUE, 288000, "no timeout active"},
127 {BASE + 4, 0, 10000, 12000, TRUE, 6000, "6 seconds should be left"},
132 data->progress.t_startsingle.tv_sec = BASE;
134 data->progress.t_startop.tv_sec = BASE;