Home
last modified time | relevance | path

Searched refs:month (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/
Dtime_scene_server.h201 month : 12, member
297 month : 12, member
352 month : 12, member
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_time_scene_model_api.h128 uint64_t month : 12; /*!< Scheduled month for the action */ member
220 uint64_t month : 12; /*!< Scheduled month for the action */ member
619 month : 12, /*!< The value of Scheduled month for the action */ member
706 uint64_t month : 12; /*!< Scheduled month for the action */ member
798 uint64_t month : 12; /*!< Scheduled month for the action */ member
/hal_espressif-latest/components/wpa_supplicant/src/utils/
Dcommon.c495 tm->month = tm2->tm_mon + 1; in os_gmtime()
500 int os_mktime(int year, int month, int day, int hour, int min, int sec, in os_mktime() argument
505 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || in os_mktime()
512 tm.tm_mon = month - 1; in os_mktime()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/
Dtime_scene_client.h172 uint64_t month : 12; /* Scheduled month for the action */ member
190 uint64_t month : 12; /* Scheduled month for the action */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/
Dtime_scene_server.c947 val |= ((uint64_t)(reg->day) << 23) | ((uint64_t)(reg->month) << 11); in get_schedule_reg_state()
1056 uint16_t month = 0U, scene_number = 0U; in scheduler_act_set() local
1069 month = (value >> 11) & BIT_MASK(12); in scheduler_act_set()
1104 .scheduler_act_set.month = month, in scheduler_act_set()
1121 srv->state->schedules[index].month = month; in scheduler_act_set()
1134 .scheduler_act_set.month = month, in scheduler_act_set()
/hal_espressif-latest/components/wpa_supplicant/port/include/
Dos.h57 int month; /* 1..12 */ member
101 int os_mktime(int year, int month, int day, int hour, int min, int sec,
/hal_espressif-latest/components/wpa_supplicant/src/tls/
Dx509v3.c576 int year, month, day, hour, min, sec; in x509_parse_time() local
630 month = parse_uint2(pos, end - pos); in x509_parse_time()
631 if (month < 0) { in x509_parse_time()
669 if (os_mktime(year, month, day, hour, min, sec, val) < 0) { in x509_parse_time()
/hal_espressif-latest/components/wpa_supplicant/src/common/
Ddpp.c4072 tm.year, tm.month, tm.day, in dpp_build_conf_obj_dpp()
4756 unsigned int year, month, day, hour, min, sec; in dpp_key_expired() local
4771 &year, &month, &day, &hour, &min, &sec) != 6) { in dpp_key_expired()
4777 if (os_mktime(year, month, day, hour, min, sec, &utime) < 0) { in dpp_key_expired()