Home
last modified time | relevance | path

Searched refs:mon (Results 1 – 25 of 489) sorted by relevance

12345678910>>...20

/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstdevice.c408 GstDeviceMonitor *mon; in GST_START_TEST() local
422 mon = gst_device_monitor_new (); in GST_START_TEST()
424 devs = gst_device_monitor_get_devices (mon); in GST_START_TEST()
427 id = gst_device_monitor_add_filter (mon, "TestProvider", NULL); in GST_START_TEST()
430 devs = gst_device_monitor_get_devices (mon); in GST_START_TEST()
433 fail_unless (gst_device_monitor_add_filter (mon, "TestDevice", NULL) == 0); in GST_START_TEST()
434 ASSERT_CRITICAL (gst_device_monitor_remove_filter (mon, 0)); in GST_START_TEST()
436 fail_unless (gst_device_monitor_remove_filter (mon, id)); in GST_START_TEST()
438 id = gst_device_monitor_add_filter (mon, "Test3", NULL); in GST_START_TEST()
440 devs = gst_device_monitor_get_devices (mon); in GST_START_TEST()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/hud/
Dhud_cpu.c338 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in query_api_thread_busy_status() local
340 if (mon && mon->queue) in query_api_thread_busy_status()
341 thread_now = util_queue_get_thread_time_nano(mon->queue, 0); in query_api_thread_busy_status()
404 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in get_counter() local
406 if (!mon || !mon->queue) in get_counter()
411 return mon->num_offloaded_items; in get_counter()
413 return mon->num_direct_items; in get_counter()
415 return mon->num_syncs; in get_counter()
/third_party/ltp/lib/
Dtst_rtctime.c29 unsigned int mon = mon0, year = year0; in tst_mktime() local
32 mon -= 2; in tst_mktime()
33 if (0 >= (int) (mon)) { in tst_mktime()
34 mon += 12; /* Puts Feb last since it has leap day */ in tst_mktime()
39 (year/4 - year/100 + year/400 + 367*mon/12 + day) + in tst_mktime()
/third_party/mbedtls/library/
Dx509.c507 switch( t->mon ) in x509_date_is_valid()
558 CHECK( x509_parse_int( p, 2, &tm->mon ) ); in x509_parse_time()
915 now->mon = lt->tm_mon + 1; in x509_get_current_time()
934 before->mon > after->mon ) in x509_check_time()
938 before->mon == after->mon && in x509_check_time()
943 before->mon == after->mon && in x509_check_time()
949 before->mon == after->mon && in x509_check_time()
956 before->mon == after->mon && in x509_check_time()
/third_party/libxml2/
Dxmlschemastypes.c68 unsigned int mon :4; /* 1 <= mon <= 12 */ member
82 long mon; /* mon stores years also */ member
1126 #define VALID_MONTH(mon) ((mon >= 1) && (mon <= 12)) argument
1141 #define MAX_DAYINMONTH(yr,mon) \ argument
1142 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1])
1146 (dt->day <= daysInMonthLeap[dt->mon - 1]) : \
1147 (dt->day <= daysInMonth[dt->mon - 1]))
1150 (VALID_YEAR(dt->year) && VALID_MONTH(dt->mon) && VALID_MDAY(dt))
1184 dt->type,dt->value.date.year,dt->value.date.mon, \
1324 dt->mon = value; in _xmlSchemaParseGMonth()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Deapol_test.py28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
29 self.mon.attach()
61 while self.mon.pending():
62 ev = self.mon.recv()
71 if not self.mon.pending(timeout=remaining):
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Deapol_test.py28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
29 self.mon.attach()
61 while self.mon.pending():
62 ev = self.mon.recv()
71 if not self.mon.pending(timeout=remaining):
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dwpa_helpers.c99 int get_wpa_cli_event2(struct wpa_ctrl *mon, in get_wpa_cli_event2() argument
110 fd = wpa_ctrl_get_fd(mon); in get_wpa_cli_event2()
132 if (wpa_ctrl_recv(mon, buf, &len) < 0) { in get_wpa_cli_event2()
156 int get_wpa_cli_event(struct wpa_ctrl *mon, in get_wpa_cli_event() argument
159 return get_wpa_cli_event2(mon, event, NULL, buf, buf_size); in get_wpa_cli_event()
Dwpa_helpers.h21 int get_wpa_cli_event(struct wpa_ctrl *mon,
23 int get_wpa_cli_event2(struct wpa_ctrl *mon,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dwpa_helpers.c99 int get_wpa_cli_event2(struct wpa_ctrl *mon, in get_wpa_cli_event2() argument
110 fd = wpa_ctrl_get_fd(mon); in get_wpa_cli_event2()
132 if (wpa_ctrl_recv(mon, buf, &len) < 0) { in get_wpa_cli_event2()
156 int get_wpa_cli_event(struct wpa_ctrl *mon, in get_wpa_cli_event() argument
159 return get_wpa_cli_event2(mon, event, NULL, buf, buf_size); in get_wpa_cli_event()
Dwpa_helpers.h21 int get_wpa_cli_event(struct wpa_ctrl *mon,
23 int get_wpa_cli_event2(struct wpa_ctrl *mon,
/third_party/rust/crates/humantime/src/
Ddate.rs296 let mut mon = 0; in fmt() localVariable
298 mon += 1; in fmt()
305 let mon = if mon + 2 > 12 { in fmt() localVariable
307 mon - 10 in fmt()
309 mon + 2 in fmt()
322 buf[5] = b'0' + (mon / 10) as u8; in fmt()
323 buf[6] = b'0' + (mon % 10) as u8; in fmt()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DSimpleDateRule.java152 int mon = c.get(Calendar.MONTH); in doFirstBetween() local
156 if (mon > this.month) { in doFirstBetween()
165 if (mon == this.month && result.before(start)) { in doFirstBetween()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DSimpleDateRule.java150 int mon = c.get(Calendar.MONTH); in doFirstBetween() local
154 if (mon > this.month) { in doFirstBetween()
163 if (mon == this.month && result.before(start)) { in doFirstBetween()
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Deo.txt8 one{"{0} mon."}
9 other{"{0} mon."}
/third_party/icu/icu4c/source/data/unit/
Deo.txt8 one{"{0} mon."}
9 other{"{0} mon."}
/third_party/skia/third_party/externals/icu/source/data/unit/
Deo.txt8 one{"{0} mon."}
9 other{"{0} mon."}
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/basic_concepts/declarations/
Ddeclarations_2.ts51 var mon: a = WeekDay.MON; variable
52 Assert.equal(mon, 1);
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/
Dmzn.txt248 mon{
255 mon-narrow{
262 mon-short{
Dce.txt622 mon{
629 mon-narrow{
636 mon-short{
/third_party/skia/third_party/externals/icu/source/data/locales/
Dmzn.txt253 mon{
260 mon-narrow{
267 mon-short{
/third_party/icu/icu4c/source/data/locales/
Dmzn.txt253 mon{
260 mon-narrow{
267 mon-short{
Dsr_Cyrl_BA.txt273 mon{
292 mon-narrow{
311 mon-short{
Dce.txt622 mon{
629 mon-narrow{
636 mon-short{
/third_party/python/Lib/http/
Dcookiejar.py151 def _str2time(day, mon, yr, hr, min, sec, tz): argument
159 mon = MONTHS_LOWER.index(mon.lower())+1
163 imon = int(mon)
167 mon = imon
193 t = _timegm((yr, mon, day, hr, min, sec, tz))
266 mon = MONTHS_LOWER.index(g[1].lower()) + 1
267 tt = (int(g[2]), mon, int(g[0]),
278 day, mon, yr, hr, min, sec, tz = [None]*7
283 day, mon, yr, hr, min, sec, tz = m.groups()
287 return _str2time(day, mon, yr, hr, min, sec, tz)
[all …]

12345678910>>...20