Home
last modified time | relevance | path

Searched refs:basic_types (Results 1 – 3 of 3) 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/linux/tools/testing/selftests/user_events/
H A Ddyn_test.c160 TEST_F(user, basic_types) { in TEST_F() argument
/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)