HomeSort by relevance Sort by last modified time
    Searched refs:type_str (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/autotest/site_utils/
job_overhead.py 33 type_str=DEFAULT_KEY, is_special_task=False):
41 @param type_str: The elastic search type string to be used when sending data
55 autotest_es.post(type_str=type_str, metadata=metadata)
79 autotest_es.post(type_str=SUITE_RUNTIME_KEY, metadata=metadata)
stable_version_utils.py 79 autotest_es.post(type_str=_STABLE_VERSION_TYPE,
90 autotest_es.post(type_str=_STABLE_VERSION_TYPE,
host_history_utils.py 92 def find_most_recent_entry_before(t, type_str, hostname, fields):
96 @param type_str: _type in esdb, such as 'host_history' (string)
105 equality_constraints=[('_type', type_str),
141 t=t_start, type_str=_LOCK_HISTORY_TYPE, hostname=hostname,
147 t=t_start, type_str=_HOST_HISTORY_TYPE, hostname=hostname,
host_label_utils.py 117 autotest_es.post(use_http=True, type_str=_HOST_LABEL_TIME_INDEX_TYPE,
  /external/dbus/dbus/
dbus-marshal-recursive.h 47 const DBusString *type_str; /**< string containing signature of block */ member in struct:DBusTypeReader
74 DBusString *type_str; /**< where to write typecodes (or read type expectations) */ member in struct:DBusTypeWriter
75 int type_pos; /**< current pos in type_str */
84 int element_type_pos; /**< position of array element type in type_str */
101 const DBusString *type_str,
106 const DBusString *type_str,
141 DBusString *type_str,
150 DBusString *type_str,
155 const DBusString *type_str,
dbus-marshal-recursive.c 147 const DBusString *type_str,
154 reader->type_str = type_str;
167 parent->type_str,
179 _dbus_assert (_dbus_string_get_byte (sub->type_str,
181 _dbus_string_get_byte (sub->type_str,
253 alignment = element_type_get_alignment (sub->type_str,
268 _dbus_type_to_string (_dbus_first_type_in_signature (sub->type_str,
288 sub->type_str = sub->value_str;
293 contained_alignment = _dbus_type_get_alignment (_dbus_first_type_in_signature (sub->type_str,
    [all...]
dbus-marshal-header.h 101 DBusString **type_str,
dbus-marshal-validate.h 119 DBusValidity _dbus_validate_signature_with_reason (const DBusString *type_str,
dbus-message.c 165 const DBusString *type_str; local
176 get_const_signature (&message->header, &type_str, &type_pos);
178 _dbus_marshal_byteswap (type_str, type_pos,
1990 const DBusString *type_str; local
3467 const DBusString *type_str; local
4027 const DBusString *type_str; local
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
typeannotation_test.py 50 def _ParseType(self, type_str):
52 comment = self._ParseComment('/** @type {%s} **/' % type_str)
55 def assertProperReconstruction(self, type_str, matching_str=None):
62 type_str: The type string to parse.
67 parsed_type = self._ParseType(type_str)
69 self.assertListEqual(list(matching_str or type_str),
71 self.assertEquals(matching_str or type_str, repr(parsed_type))
74 self.assertEquals(type_str.replace('\n', ''), parsed_type.ToString())
77 def assertNullable(self, type_str, nullable=True):
78 parsed_type = self.assertProperReconstruction(type_str)
    [all...]
  /system/update_engine/update_manager/
real_shill_provider.cc 33 ConnectionType RealShillProvider::ParseConnectionType(const string& type_str) {
34 if (type_str == shill::kTypeEthernet) {
36 } else if (type_str == shill::kTypeWifi) {
38 } else if (type_str == shill::kTypeWimax) {
40 } else if (type_str == shill::kTypeBluetooth) {
42 } else if (type_str == shill::kTypeCellular) {
170 string type_str = prop_type->second.TryGet<string>(); local
171 if (type_str == shill::kTypeVPN) {
184 var_conn_type_.SetValue(ParseConnectionType(type_str));
real_device_policy_provider.cc 134 for (auto& type_str : allowed_types_str) {
136 RealShillProvider::ParseConnectionType(type_str.c_str());
140 LOG(WARNING) << "Policy includes unknown connection type: " << type_str;
real_shill_provider.h 65 static ConnectionType ParseConnectionType(const std::string& type_str);
  /external/toybox/toys/pending/
host.c 28 char *type_str;
80 if (!TT.type_str && (toys.optflags & FLAG_a)) TT.type_str = "255";
100 if (!TT.type_str) TT.type_str="12";
101 } else if (!TT.type_str) TT.type_str="1";
103 if (TT.type_str[0]-'0' < 10u) type = atoi(TT.type_str);
107 if (rrt[i].name && !strcasecmp(TT.type_str, rrt[i].name))
    [all...]
  /system/update_engine/
connection_manager.cc 41 NetworkConnectionType ParseConnectionType(const string& type_str) {
42 if (type_str == shill::kTypeEthernet) {
44 } else if (type_str == shill::kTypeWifi) {
46 } else if (type_str == shill::kTypeWimax) {
48 } else if (type_str == shill::kTypeBluetooth) {
50 } else if (type_str == shill::kTypeCellular) {
227 string type_str = prop_type->second.TryGet<string>(); local
228 if (type_str == shill::kTypeVPN) {
240 *out_type = ParseConnectionType(type_str);
  /external/autotest/client/common_lib/cros/graphite/
es_utils.py 126 def _send_data_http(self, type_str, metadata):
129 @param type_str: sets the _type field in elasticsearch db.
133 self.es.index(index=self.index, doc_type=type_str, body=metadata)
140 def _send_data_udp(self, type_str, metadata):
143 @param type_str: sets the _type field in elasticsearch db.
149 {'index': {'_index': self.index, '_type': type_str}},
162 def post(self, type_str, metadata, log_time_recorded=True, **kwargs):
165 @param type_str: Sets the _type field in elasticsearch db.
181 type_str = metadata['_type']
187 self._send_data_http(type_str, metadata
    [all...]
stats.py 93 self.es.post(type_str=STATS_ES_TYPE, metadata=self.metadata,
111 self.es.post(type_str=STATS_ES_TYPE, metadata=self.metadata,
129 self.es.post(type_str=STATS_ES_TYPE, metadata=self.metadata,
152 self.es.post(type_str=STATS_ES_TYPE, metadata=self.metadata,
184 self.es.post(type_str=STATS_ES_TYPE, metadata=self.metadata,
  /external/selinux/libsemanage/src/
fcontexts_local.c 100 const char *type_str = semanage_fcontext_get_type_str(type); local
113 str, expr, type_str);
117 expr, type_str);
fcontexts_file.c 23 static const char *type_str(int type) function
54 const char *print_str = type_str(type);
  /external/icu/icu4c/source/i18n/
gender.cpp 160 char type_str[256]; local
161 u_UCharsToChars(s, type_str, resLen + 1);
162 if (uprv_strcmp(type_str, gNeutralStr) == 0) {
165 if (uprv_strcmp(type_str, gMixedNeutralStr) == 0) {
168 if (uprv_strcmp(type_str, gMailTaintsStr) == 0) {
  /external/boringssl/src/crypto/asn1/
a_mbstr.c 69 static int type_str(unsigned long value, void *arg);
159 if(traverse_string(in, len, inform, type_str, &mask) < 0) {
306 static int type_str(unsigned long value, void *arg) function
  /external/dbus/tools/
dbus-send.c 242 const char *type_str = NULL; local
298 type_str = strchr (arg, '=') + 1;
319 if (type_str != NULL)
321 message_type = dbus_message_type_from_string (type_str);
326 type_str);
  /external/autotest/client/common_lib/hosts/
base_classes.py 196 def _construct_host_metadata(self, type_str):
197 """Returns dict of metadata with type_str, hostname, time_recorded.
199 @param type_str: String representing _type field in es db.
200 For example: type_str='reboot_total'.
205 '_type': type_str,
  /external/autotest/scheduler/
rdb_hosts.py 213 def record_state(self, type_str, state, value):
216 @param type_str: sets the _type field in elasticsearch db.
227 '_type': type_str,
  /art/runtime/
dex_file_test.cc 295 const char* type_str = java_lang_dex_file_->StringByTypeIdx(i); local
296 const DexFile::StringId* type_str_id = java_lang_dex_file_->FindStringId(type_str);
300 ASSERT_EQ(type_id, java_lang_dex_file_->FindTypeId(type_str));

Completed in 910 milliseconds

1 2 3