Home
last modified time | relevance | path

Searched refs:triggers (Results 1 – 25 of 219) sorted by relevance

123456789

/external/grpc-grpc/tools/run_tests/python_utils/
Dfilter_pull_request_tests.py35 self.triggers = []
43 self.triggers.append(trigger)
133 def _can_skip_tests(file_names, triggers): argument
141 if any(re.match(trigger, file_name) for trigger in triggers):
172 changed_files, _CPP_TEST_SUITE.triggers + _CORE_TEST_SUITE.triggers)
196 if _can_skip_tests(changed_files, test_suite.triggers):
/external/sl4a/Common/src/com/googlecode/android_scripting/trigger/
DTriggerRepository.java83 String triggers = mPreferences.getString(TRIGGERS_PREF_KEY, null); in TriggerRepository() local
84 mTriggers = deserializeTriggersFromString(triggers); in TriggerRepository()
144 private Multimap<String, Trigger> deserializeTriggersFromString(String triggers) { in deserializeTriggersFromString() argument
145 if (triggers == null) { in deserializeTriggersFromString()
150 new ByteArrayInputStream(Base64Codec.decodeBase64(triggers.getBytes())); in deserializeTriggersFromString()
160 private String serializeTriggersToString(Multimap<String, Trigger> triggers) { in serializeTriggersToString() argument
164 objectOutputStream.writeObject(triggers); in serializeTriggersToString()
/external/wpa_supplicant_8/src/drivers/
Ddriver_common.c190 struct wowlan_triggers *triggers; in wpa_get_wowlan_triggers() local
201 triggers = os_zalloc(sizeof(*triggers)); in wpa_get_wowlan_triggers()
202 if (triggers == NULL) in wpa_get_wowlan_triggers()
208 &triggers->trigger) in wpa_get_wowlan_triggers()
232 os_free(triggers); in wpa_get_wowlan_triggers()
233 triggers = NULL; in wpa_get_wowlan_triggers()
245 return triggers; in wpa_get_wowlan_triggers()
/external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
Dftrace_set_ftrace_filter.sh25 triggers="traceon traceoff enable_event disable_event snapshot \
27 nr_triggers=$(echo ${triggers} | wc -w)
108 trigger_name=$(echo $triggers | awk "{print \$$trigger_index}")
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/
Dfunctions19 # remove action triggers first
34 reset_trigger() { # reset all current setting triggers
48 reset_ftrace_filter() { # reset all triggers in set_ftrace_filter
86 # no events, no triggers, no filters, no function filters,
/external/perfetto/src/perfetto_cmd/
Dtrigger_producer.cc32 const std::vector<std::string>* const triggers) in TriggerProducer() argument
35 triggers_(triggers), in TriggerProducer()
Dtrigger_producer.h38 const std::vector<std::string>* const triggers);
/external/walt/arduino/walt/
Dwalt.ino96 struct trigger * triggers[TRIGGER_COUNT] = {&laser, &screen, &sound, &midi, &gshock};
193 memset(triggers[i], 0, sizeof(struct trigger));
423 // Send out any triggers with autosend and pending data
428 if (triggers[i]->autosend && triggers[i]->count > 0) {
430 copy_trigger = *(triggers[i]);
431 triggers[i]->count = 0;
/external/autotest/client/common_lib/hosts/
Drepair_unittest.py175 def __init__(self, tag, deps, triggers, host_class, success): argument
176 super(_StubRepairAction, self).__init__(tag, deps, triggers,
259 def _make_repair_action(self, success, tag, deps, triggers, argument
270 repair_action = _StubRepairAction(tag, deps, triggers, host_class,
936 for tag, success, deps, triggers in input_data:
938 strategy_data.append((construct, tag, deps, triggers))
1129 def _check_common_trigger(self, strategy, repair_tags, triggers): argument
1134 triggers)
Drepair.py449 def __init__(self, tag, dependencies, triggers, host_class): argument
451 self._trigger_list = triggers
802 for constructor, tag, deps, triggers in repair_data:
805 [verifier_map[t] for t in triggers],
/external/clang/test/Analysis/inlining/
Dinline-defensive-checks.m100 // directly related to the value that triggers the warning.
112 // directly related to the value that triggers the warning.
124 // directly related to the value that triggers the warning.
/external/perfetto/src/tracing/ipc/service/
Dproducer_ipc_service.cc284 std::vector<std::string> triggers; in ActivateTriggers() local
286 triggers.push_back(name); in ActivateTriggers()
288 producer->service_endpoint->ActivateTriggers(triggers); in ActivateTriggers()
/external/snakeyaml/src/test/resources/pyyaml/
Dremove-possible-simple-key-bug.loader-error2 *A ] # The ']' indicator triggers remove_possible_simple_key,
/external/perfetto/protos/perfetto/config/
Dtrace_config.proto89 // However in case of traces with triggers, see
167 // Consumer explicitly triggers the StartTracing() method.
202 // |triggers| are received. This supports early initialization and fast
232 // A list of triggers which are related to this configuration. If ANY
234 repeated Trigger triggers = 2; field
246 // producer and send these triggers, potentially stopping or starting traces
/external/autotest/client/site_tests/desktopui_ExitOnSupervisedUserCrash/
Dcontrol17 triggers session termination.
Dcontrol.arc19 triggers session termination.
/external/perfetto/test/configs/
Dbackground.cfg51 triggers: {
/external/autotest/client/site_tests/desktopui_ExitOnSupervisedUserCrash_P/
Dcontrol17 triggers session termination.
Dcontrol.arc19 triggers session termination.
/external/autotest/server/site_tests/network_WiFi_ConnectOnResume/
Dcontrol12 This test checks that the connection manager triggers scans and connects
/external/autotest/client/site_tests/policy_NotificationsAllowedForUrls/
Dcontrol.sitenotallowed_block18 the page that triggers a notification, and DefaultNotificationsSetting=2
/external/autotest/client/site_tests/cellular_GobiUncleanDisconnect/
Dcontrol18 This test triggers unclean disconnects from the Gobi to ensure that the kernel
Dcontrol.gobi3k20 This test triggers unclean disconnects from the Gobi to ensure that the kernel
/external/autotest/client/site_tests/policy_NotificationsBlockedForUrls/
Dcontrol.siteallowed_show18 the page that triggers a notification, and DefaultNotificationsSetting=1
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DDbg.stg56 // Common debug event triggers used by region overrides below
82 // Region overrides that tell various constructs to add debugging triggers

123456789