Home
last modified time | relevance | path

Searched refs:basic_types (Results 1 – 2 of 2) sorted by relevance

/openbmc/rest-dbus/resources/
H A Ddbus.js75 var basic_types = { class in format_one_type
91 if (basic_types[c]) {
92 ret.type = basic_types[c];
/openbmc/phosphor-rest-server/module/obmc/wsgi/apps/
H A Drest_dbus.py117 basic_types = {'b': bool, 'y': dbus.Byte, 'n': dbus.Int16, 'i': int,
121 basic_types = {'b': bool, 'y': dbus.Byte, 'n': dbus.Int16, 'i': int,
127 if signature in basic_types:
128 converted_value = basic_types[signature](value)