Lines Matching refs:dict
36 mp_obj_t dict; in aiot_device_ntp_notify() local
37 dict = mp_obj_new_dict(8); in aiot_device_ntp_notify()
38 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("year", 4), in aiot_device_ntp_notify()
40 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("month", 5), in aiot_device_ntp_notify()
42 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("day", 3), in aiot_device_ntp_notify()
44 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("hour", 4), in aiot_device_ntp_notify()
46 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("minute", 6), in aiot_device_ntp_notify()
48 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("second", 6), in aiot_device_ntp_notify()
50 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("msecond", 7), in aiot_device_ntp_notify()
52 mp_obj_dict_store(MP_OBJ_FROM_PTR(dict), mp_obj_new_str("timestamp", 9), in aiot_device_ntp_notify()
55 callback_to_python(param->cb, dict); in aiot_device_ntp_notify()