HomeSort by relevance Sort by last modified time
    Searched full:trigger (Results 151 - 175 of 5233) sorted by null

1 2 3 4 5 67 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
cortex-a8-fix-bl.s 35 @ Trigger Cortex-A8 erratum workaround with bl instructions.
  /external/autotest/server/site_tests/platform_KernelErrorPaths/
platform_KernelErrorPaths.py 19 # Simply sending the trigger into lkdtm resets the target
30 def _provoke_crash(self, interface, trigger, cpu):
39 @param trigger: the text string to write for triggering a crash
48 command = "echo %s | taskset -c %d tee %s" % (trigger, cpu,
52 command = "echo %s > %s" % (trigger, interface)
87 def _wait_for_restart_and_check(self, boot_id, trigger, text, cpu=0,
93 @param trigger: Text string that specifies what caused the panic/reboot.
95 @param cpu: CPU on which the trigger happened.
134 ((match,), trigger, cpu))
183 self._run_client_command('echo x > /proc/sysrq-trigger')
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
SimpleSaveActivityTest.java 111 // Trigger autofill.
157 // Trigger autofill.
176 // Trigger save...
217 // Trigger autofill.
222 // Trigger save.
258 // Trigger autofill.
263 // Trigger save.
288 // Trigger autofill.
293 // Trigger save and start a new session right away.
321 // Trigger autofill
    [all...]
PreSimpleSaveActivityTest.java 81 // Trigger autofill.
86 // Trigger save.
140 // Trigger autofill.
145 // Trigger save.
194 // Trigger autofill.
205 // Trigger save.
234 // Trigger autofill.
239 // Trigger save.
292 // Trigger autofill.
297 // Trigger save
    [all...]
DisableAutofillTest.java 63 * <li>Subsequent UI focus should not trigger events.
103 // Trigger autofill
150 // Trigger autofill
184 // Trigger autofill for the first time.
206 // Trigger autofill for the first time.
227 // Trigger autofill for the first time.
254 // Trigger autofill for the first time.
279 // Trigger autofill for the first time.
302 // Trigger autofill for the first time.
  /external/llvm/test/Transforms/LoopVectorize/X86/
gather_scatter.ll 10 ;void foo1(float * __restrict__ in, float * __restrict__ out, int * __restrict__ trigger, int * __restrict__ index) {
13 ; if (trigger[i] > 0) {
26 define void @foo1(float* noalias %in, float* noalias %out, i32* noalias %trigger, i32* noalias %index) {
30 %trigger.addr = alloca i32*, align 8
35 store i32* %trigger, i32** %trigger.addr, align 8
48 %2 = load i32*, i32** %trigger.addr, align 8
86 ;void foo2 (In * __restrict__ in, float * __restrict__ out, int * __restrict__ trigger) {
89 ; if (trigger[i] > 0) {
102 define void @foo2(%struct.In* noalias %in, float* noalias %out, i32* noalias %trigger, i32* noalias %index) #0
    [all...]
  /external/autotest/client/tests/kernel_sysrq_info/
kernel_sysrq_info.py 23 Trigger one SysRq command, and return the kernel log output
28 with open("/proc/sysrq-trigger", "w") as f:
  /external/autotest/server/site_tests/network_WiFi_WakeOnDisconnect/
network_WiFi_WakeOnDisconnect.py 31 # Kick over the router to trigger wake on disconnect.
37 # Ensure that wake on packet did not trigger a full wake.
  /external/compiler-rt/test/esan/TestCases/
workingset-early-fault.c 12 // invoked from dlsym will trigger shadow faults, to test an
20 // Ensure we trigger a shadow write fault:
  /external/llvm/test/Transforms/SimplifyCFG/
preserve-branchweights-partial.ll 3 ; This test case was written to trigger an incorrect assert statement in
11 ; be 0 to trigger the assert.
  /external/walt/ios/WALT/
ScreenResponseController.m 73 // Clear the screen trigger on the WALT.
81 WALTTrigger trigger = [_client readTriggerWithTimeout:kWALTReadTimeout];
82 if (trigger.tag != kWALTScreenTag) {
84 message:@"Failed to read last screen trigger."
92 // Create a queue for work blocks to read WALT trigger responses.
174 // Queue an operation to read the trigger.
181 // Record the delta between the trigger and the flash time.
207 // Queue an operation (after the read trigger above) to turn off brightness notifications.
  /frameworks/base/core/java/android/hardware/soundtrigger/
IRecognitionStatusCallback.aidl 35 * Called when a generic sound trigger event is witnessed.
38 * recognition event such as trigger audio data (if
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MailWebView.java 9 // NARROW_COLUMNS reflow can trigger the document to change size, so notify interested parties.
10 // This is also a good trigger to know when to alter scroll position.
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 122 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
125 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
127 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
131 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 146 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
149 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
151 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
155 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_ae_precapture_trigger.py 26 """Test the AE state machine when using the precapture trigger.
44 # has an AE precapture trigger (which should be ignored since AE is
59 # Capture an auto request and verify the AE state; no trigger.
67 # Capture with auto request with a precapture trigger.
71 print "AE state after auto request with precapture trigger:", state
  /external/libjpeg-turbo/doc/html/
dynsections.js 6 var trigger = $('#'+base+'-trigger');
7 var src=$(trigger).attr('src');
12 $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');
17 $(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
  /external/trappy/trappy/stats/
Trigger.py 16 """Trigger is a representation of the following:
32 class Trigger(object):
33 """Trigger is an event-value relationship which
39 :param template: A trappy Event to act as a trigger
81 """Generate the trigger data for a given pivot value
Aggregator.py 85 """This aggregator accepts a list of triggers and each trigger has
91 :param triggers: trappy.stat.Trigger): A list or a singular trigger object
92 :type triggers: :mod:`trappy.stat.Trigger.Trigger`
169 for trigger in self._triggers:
171 result_series = trigger.generate(node)
  /external/wpa_supplicant_8/src/drivers/
driver_common.c 149 static int wpa_check_wowlan_trigger(const char *start, const char *trigger,
152 if (os_strcmp(start, trigger) != 0)
181 #define CHECK_TRIGGER(trigger) \
182 wpa_check_wowlan_trigger(start, #trigger, \
183 capa->wowlan_triggers.trigger, \
184 &triggers->trigger)
206 "Unknown/unsupported wowlan trigger '%s'",
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemjob/
SystemJobInfoConverter.java 105 for (ContentUriTriggers.Trigger trigger : constraints.getContentUriTriggers()) {
106 builder.addTriggerContentUri(convertContentUriTrigger(trigger));
122 ContentUriTriggers.Trigger trigger) {
123 int flag = trigger.shouldTriggerForDescendants()
125 return new JobInfo.TriggerContentUri(trigger.getUri(), flag);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothPairingDetailTest.java 155 // Initial Bluetooth ON will trigger scan enable, list clear and scan start
161 // Subsequent scan started event will not trigger start/stop nor list clear
166 // Subsequent scan finished event will trigger scan start without list clean
171 // Subsequent scan started event will not trigger any change
177 // Disable scanning will trigger scan stop
181 // Subsequent scan start event will not trigger any change besides progress circle
185 // However, subsequent scan finished event won't trigger new scan start and will stop
  /tools/test/connectivity/acts/tests/google/power/wifi/
PowerWiFiscanTest.py 59 Trigger the desired scan.
61 self.log.info('Trigger {} scans'.format(self.test_configs.scan_mode))
70 self.log.info('Set attenuation to trigger PNO scan')
75 'Now turn on screen to trigger connectivity scans')
155 """WiFi disconected, turn on Screen to trigger connectivity scans.
163 """WiFi connected to 2g, turn on screen to trigger connectivity scans.
178 """WiFi connected to 2g, trigger pno scan.
  /external/webrtc/webrtc/video/
vie_remb_unittest.cc 87 // Lower the estimate with more than 3% to trigger a call to SetREMBData right
116 // Lower the estimate to trigger a callback.
144 // Increased estimate shouldn't trigger a callback right away.
149 // Decreasing the estimate less than 3% shouldn't trigger a new callback.
178 // Decrease estimate to trigger a REMB.
214 // Lower the estimate, should trigger a call to SetREMBData right away.
220 // Call OnReceiveBitrateChanged again, this should not trigger a new callback.
228 // Only register receiving modules and make sure we fallback to trigger a REMB
246 // Lower the estimate to trigger a new packet REMB packet.
  /frameworks/support/work/workmanager-firebase/src/androidTest/java/androidx/work/impl/background/firebase/
FirebaseJobConverterTest.java 52 import com.firebase.jobdispatcher.Trigger;
84 JobTrigger.ImmediateTrigger trigger = (JobTrigger.ImmediateTrigger) job.getTrigger(); local
85 assertThat(trigger, is(Trigger.NOW));
130 JobTrigger.ContentUriTrigger trigger = (JobTrigger.ContentUriTrigger) job.getTrigger(); local
131 List<ObservedUri> observedUriList = trigger.getUris();
163 JobTrigger.ExecutionWindowTrigger trigger = local
165 assertThat(trigger.getWindowEnd(), is(expectedWindowEndSeconds));
166 assertThat(trigger.getWindowStart(), is(expectedWindowStartSeconds));

Completed in 6346 milliseconds

1 2 3 4 5 67 8 91011>>