Home
last modified time | relevance | path

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

/third_party/skia/infra/bots/recipes/
Dcompute_buildstats.py121 keystr = ' '.join(keys)
136 return (keystr, propstr)
141 (keystr, propstr) = keys_and_props(api)
149 args=[f, out_dir, keystr, propstr, TOTAL_SIZE_BYTES_KEY,
168 (keystr, propstr) = keys_and_props(api)
177 args=[f, out_dir, keystr, propstr, bloaty_exe, TOTAL_SIZE_BYTES_KEY,
196 (keystr, propstr) = keys_and_props(api)
209 args=[stripped, out_dir, keystr, propstr, bloaty_exe,
235 (keystr, propstr) = keys_and_props(api)
245 args=[f, out_dir, keystr, propstr, bloaty_exe,
/third_party/skia/infra/bots/buildstats/
Dbuildstats_web.py19 keystr = sys.argv[3]
33 keys = keystr.split(' ')
Dbuildstats_wasm.py19 keystr = sys.argv[3]
48 keys = keystr.split(' ')
Dbuildstats_cpp.py21 keystr = sys.argv[3]
36 keys = keystr.split(' ')
Dbuildstats_flutter.py21 keystr = sys.argv[3]
41 keys = keystr.split(' ')
/third_party/pulseaudio/src/modules/bluetooth/
Dbackend-native.c810 char *substr = buf, *keystr; in rfcomm_io_callback() local
816 keystr = strchr(substr, ','); in rfcomm_io_callback()
817 if (!keystr) { in rfcomm_io_callback()
822 keystr++; in rfcomm_io_callback()
823 substr = strchr(keystr, ','); in rfcomm_io_callback()
831 key = atoi(keystr); in rfcomm_io_callback()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspmessage.c915 const gchar *keystr; in gst_rtsp_message_append_headers() local
920 keystr = key_value->custom_key; in gst_rtsp_message_append_headers()
922 keystr = gst_rtsp_header_as_text (key_value->field); in gst_rtsp_message_append_headers()
924 g_string_append_printf (str, "%s: %s\r\n", keystr, key_value->value); in gst_rtsp_message_append_headers()
/third_party/python/Modules/_sqlite/
Dcursor.c130 _pysqlite_get_converter(const char *keystr, Py_ssize_t keylen) in _pysqlite_get_converter() argument
137 key = PyUnicode_FromStringAndSize(keystr, keylen); in _pysqlite_get_converter()