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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
AlarmManager.java 122 * @param operation Action to perform when the alarm goes off;
137 public void set(int type, long triggerAtTime, PendingIntent operation) {
139 mService.set(type, triggerAtTime, operation);
175 * @param operation Action to perform when the alarm goes off;
191 PendingIntent operation) {
193 mService.setRepeating(type, triggerAtTime, interval, operation);
236 * @param operation Action to perform when the alarm goes off;
257 PendingIntent operation) {
259 mService.setInexactRepeating(type, triggerAtTime, interval, operation);
269 * @param operation IntentSender which matches a previously adde
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 22 private final short operation; field in class:UserDataNotification
32 public UserDataNotification(short operation,
37 this.operation = operation;
45 * Get value of operation parameter
47 * @return value of operation parameter
50 return operation;
UserDataMonitor.java 39 * @param operation
51 short operation,
57 new UserDataNotification(operation, key, data, src, dst));
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
CompositeFloatValue.java 24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
CompositeIntegerValue.java 24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
  /external/openssl/crypto/dh/
dh_asn1.c 67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
69 if(operation == ASN1_OP_NEW_PRE) {
73 } else if(operation == ASN1_OP_FREE_PRE) {
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
UserDataHandler.java 57 * @param operation Specifies the type of operation that is being
66 public void handle(short operation,
  /frameworks/base/core/java/android/content/
SyncQueue.java 58 public boolean add(SyncOperation operation) {
59 return add(operation, null /* this is not coming from the database */);
62 private boolean add(SyncOperation operation,
64 // - if an operation with the same key exists and this one should run earlier,
66 // - if an operation with the same key exists and if this one should run
68 // - if no operation exists then add the new one
69 final String operationKey = operation.key;
74 if (existingOperation.expedited == operation.expedited) {
76 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
82 if (operation.expedited)
    [all...]
  /external/iptables/extensions/
libipt_2ecn.c 52 einfo->operation |= IPT_ECN_OP_MATCH_CWR;
63 einfo->operation |= IPT_ECN_OP_MATCH_ECE;
77 einfo->operation |= IPT_ECN_OP_MATCH_IP;
109 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
115 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
121 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
135 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
141 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
147 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
libipt_ECN.c 62 einfo->operation = IPT_ECN_OP_SET_ECE | IPT_ECN_OP_SET_CWR;
74 einfo->operation |= IPT_ECN_OP_SET_CWR;
85 einfo->operation |= IPT_ECN_OP_SET_ECE;
96 einfo->operation |= IPT_ECN_OP_SET_IP;
126 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR)
131 if (einfo->operation & IPT_ECN_OP_SET_ECE)
134 if (einfo->operation & IPT_ECN_OP_SET_CWR)
137 if (einfo->operation & IPT_ECN_OP_SET_IP)
149 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR)
155 if (einfo->operation & IPT_ECN_OP_SET_ECE
    [all...]
  /external/e2fsprogs/intl/
plural-exp.c 38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var;
83 plone.operation = num;
87 GERMANIC_PLURAL.operation = not_equal;
eval-plural.h 32 switch (pexp->operation)
45 /* pexp->operation must be lnot. */
52 if (pexp->operation == lor)
54 else if (pexp->operation == land)
60 switch (pexp->operation)
101 /* pexp->operation must be qmop. */
  /external/openssl/crypto/asn1/
nsseq.c 65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
67 if(operation == ASN1_OP_NEW_POST) {
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_ECN.h 25 u_int8_t operation; member in struct:ipt_ECN_info
  /dalvik/vm/mterp/x86-atom/
unop.S 19 * Code: Generic 32-bit unary operation. Provide an "instr" variable and a
25 * Description: Perform the identified unary operation on the source
40 $preinstr # do operation part 1
41 $instr # do operation part 2
unopWide.S 19 * Code: Generic 64-bit unary operation. Provide an "instr" variable and a
25 * Description: Perform the identified unary operation on the source
40 $preinstr # do operation part 1
41 $instr # do operation part 2
  /external/iptables/include/linux/netfilter_ipv4/
ipt_2ecn.h 23 u_int8_t operation; member in struct:ipt_ecn_info
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */ member in struct:ipt_ECN_info
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */ member in struct:ipt_ECN_info
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 25 u_int8_t operation; member in struct:ipt_ECN_info
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 25 u_int8_t operation; member in struct:ipt_ECN_info
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 25 u_int8_t operation; member in struct:ipt_ECN_info

Completed in 1005 milliseconds

1 2 3 4 5 6 7 8 91011>>