HomeSort by relevance Sort by last modified time
    Searched full:trigger (Results 1 - 25 of 2074) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
pth_empty.c 1 // Does nothing, but linking it with -lpthread is enough to trigger an error
  /frameworks/base/tests/SmokeTestApps/
README 2 to trigger the smoke tests to fail. They are otherwise not useful.
  /external/iptables/include/linux/netfilter/
xt_LED.h 7 char id[27]; /* Unique ID for this trigger in the LED class */
9 __u32 delay; /* Delay until LED is switched off after trigger */
  /external/iptables/extensions/
libxt_LED.man 1 This creates an LED-trigger that can then be attached to system indicator
5 the trigger behavior:
7 \fB\-\-led\-trigger\-id\fP \fIname\fP
8 This is the name given to the LED trigger. The actual name of the trigger
15 leave the LED on permanently once activated. (In this case the trigger will
26 Create an LED trigger for incoming SSH traffic:
27 iptables \-A INPUT \-p tcp \-\-dport 22 \-j LED \-\-led\-trigger\-id ssh
29 Then attach the new trigger to an LED:
30 echo netfilter\-ssh >/sys/class/leds/\fIledname\fP/trigger
    [all...]
  /external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
console-eval.html 9 <script>instructions({console: true, trigger: "something"});</script>
console-str-getter.html 10 <script>instructions({console: true, trigger: "something"});</script>
inspector-evaluate.html 9 <script>instructions({trigger: "Type something into the search box"});</script>
console-alert-document-body.html 12 <script>instructions({console: true, trigger: "alert(document.body)"});</script>
console-alert-object.html 12 <script>instructions({console: true, trigger: "alert({})"});</script>
console-alert-this.html 15 <script>instructions({console: true, trigger: "alert(this)"});</script>
console-str-alert-object.html 13 <script>instructions({console: true, trigger: "something"});</script>
inspector-treeElementIdentifier.html 15 <script>instructions({trigger: "Collapse and expand the &lt;body/&gt; tag"});</script>
inspector-hasAttributes.html 6 <script>instructions({trigger: "Collapse and expand the &lt;body/&gt; tag"});</script>
  /external/clang/test/SemaCXX/
warn-missing-variable-declarations.cpp 3 // Variable declarations that should trigger a warning.
11 // Variable declarations that should not trigger a warning.
19 // Functions should never trigger a warning.
  /external/clang/test/Preprocessor/
extension-warning.c 12 // Note: this warning intentionally doesn't trigger on keywords like
15 // Current list of keywords this can trigger on:
mi_opt2.c 3 // This test should not trigger the include guard optimization since
  /external/javasqlite/src/main/java/SQLite/
Authorizer.java 13 * @param arg1 first argument (table, view, index, or trigger name)
16 * @param arg4 third argument (trigger name)
  /external/valgrind/main/drd/tests/
pth_barrier_reinit.c 0 /** Trigger barrier reinitialization, which is not allowed by the POSIX
  /frameworks/base/data/keyboards/
Vendor_054c_Product_0268.kl 54 # L2 trigger
57 # R2 trigger
60 # L1 trigger
63 # R1 trigger
  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
Trigger.java 36 * A trigger represents a physical input, such as a keyboard key, a mouse
39 public interface Trigger {
42 * @return A user friendly name for the trigger.
47 * Returns the hash code for the trigger.
49 * @return the hash code for the trigger.
  /frameworks/base/core/java/android/hardware/
TriggerEvent.java 20 * This class represents a Trigger Event - the event
21 * associated with a Trigger Sensor. When the sensor detects a trigger
25 * after the trigger.
28 * when the trigger happened, the timestamp along with detailed
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 90 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;
91 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;
92 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;
93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
96 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
97 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
99 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /external/chromium/chrome/browser/policy/
managed_prefs_banner_base.h 40 // Add a local state preference as visibility trigger.
42 // Remove a local state preference from being a visibility trigger.
45 // Add a user preference as visibility trigger.
47 // Remove a user preference from being a visibility trigger.
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 9 if (a > b) // simply filling in 0 or 1 doesn't trigger the assertion
  /external/kernel-headers/original/linux/
serial_reg.h 47 * Note: The FIFO trigger levels are chip specific:
68 #define UART_FCR_TRIGGER_MASK 0xC0 /* Mask for the FIFO trigger range */
69 #define UART_FCR_TRIGGER_1 0x00 /* Mask for trigger set at 1 */
70 #define UART_FCR_TRIGGER_4 0x40 /* Mask for trigger set at 4 */
71 #define UART_FCR_TRIGGER_8 0x80 /* Mask for trigger set at 8 */
72 #define UART_FCR_TRIGGER_14 0xC0 /* Mask for trigger set at 14 */
74 #define UART_FCR6_R_TRIGGER_8 0x00 /* Mask for receive trigger set at 1 */
75 #define UART_FCR6_R_TRIGGER_16 0x40 /* Mask for receive trigger set at 4 */
76 #define UART_FCR6_R_TRIGGER_24 0x80 /* Mask for receive trigger set at 8 */
77 #define UART_FCR6_R_TRIGGER_28 0xC0 /* Mask for receive trigger set at 14 *
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>