Searched defs:operation (Results 1 - 25 of 114) sorted by relevance

12345

/external/iptables/include/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/openssl/crypto/dh/
H A Ddh_asn1.c67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 if(operation == ASN1_OP_NEW_PRE) {
74 } else if(operation == ASN1_OP_FREE_PRE) {
/external/openssl/crypto/rsa/
H A Drsa_asn1.c67 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 if(operation == ASN1_OP_NEW_PRE) {
74 } else if(operation == ASN1_OP_FREE_PRE) {
/external/openssl/crypto/asn1/
H A Dnsseq.c65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
68 if(operation == ASN1_OP_NEW_POST) {
H A Dp8_pkey.c64 /* Minor tweak to operation: zero private key data */
65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
69 if(operation == ASN1_OP_FREE_PRE) {
H A Dx_pubkey.c71 /* Minor tweak to operation: free up EVP_PKEY */
72 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
75 if (operation == ASN1_OP_FREE_POST)
H A Dx_req.c82 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
87 if(operation == ASN1_OP_NEW_POST) {
H A Dx_x509.c84 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
89 switch(operation) {
H A Dx_crl.c94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
100 switch(operation) {
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
216 switch(operation)
/external/openssl/crypto/dsa/
H A Ddsa_asn1.c67 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 if(operation == ASN1_OP_NEW_PRE) {
94 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
97 if(operation == ASN1_OP_NEW_PRE) {
101 } else if(operation == ASN1_OP_FREE_PRE) {
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
87 switch(operation)
129 /* Minor tweak to operation: free up EVP_PKEY */
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
133 if(operation == ASN1_OP_FREE_POST) {
172 /* Minor tweak to operation: free up X509 */
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
176 if(operation == ASN1_OP_FREE_POST) {
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ECN.h22 u_int8_t operation; /* bitset of operations */ member in struct:ipt_ECN_info
H A Dipt_ecn.h23 u_int8_t operation; member in struct:ipt_ecn_info
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_ECN.h22 u_int8_t operation; /* bitset of operations */ member in struct:ipt_ECN_info
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java24 * 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+")";
47 CompositeDoubleValue(DoubleValue doubleValue1, byte operation, DoubleValue doubleValue2) argument
H A DCompositeFloatValue.java24 * 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+")";
47 CompositeFloatValue(FloatValue floatValue1, byte operation, FloatValue floatValue2) argument
H A DCompositeIntegerValue.java24 * 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+")";
53 CompositeIntegerValue(IntegerValue integerValue1, byte operation, IntegerValue integerValue2) argument
H A DCompositeLongValue.java24 * 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+")";
53 CompositeLongValue(LongValue longValue1, byte operation, Value longValue2) argument
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DGraphicsOperationCollection.cpp37 void GraphicsOperationCollection::append(GraphicsOperation::Operation* operation) argument
39 m_operations.append(operation);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DPaintTileOperation.h44 virtual bool operator==(const QueuedOperation* operation);
66 virtual bool check(QueuedOperation* operation) argument
68 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
80 virtual bool check(QueuedOperation* operation) argument
82 PaintTileOperation* op = static_cast<PaintTileOperation*>(operation);
H A DPaintTileOperation.cpp76 bool PaintTileOperation::operator==(const QueuedOperation* operation) argument
78 const PaintTileOperation* op = static_cast<const PaintTileOperation*>(operation);
H A DTexturesGenerator.cpp52 void TexturesGenerator::scheduleOperation(QueuedOperation* operation) argument
57 mRequestedOperations.append(operation);
58 mRequestedOperationsHash.set(operation->uniquePtr(), operation);
60 bool deferrable = operation->priority() >= gDeferPriorityCutoff;
77 QueuedOperation* operation = mRequestedOperations[i]; local
78 if (filter->check(operation)) {
80 mRequestedOperationsHash.remove(operation->uniquePtr());
81 delete operation;
/external/chromium/net/disk_cache/
H A Din_flight_io.cc52 void InFlightIO::OnIOComplete(BackgroundIO* operation) { argument
62 NewRunnableMethod(operation,
64 operation->io_completed()->Signal();
68 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) { argument
69 operation->io_completed()->Wait();
72 operation->Cancel();
74 // Make sure that we remove the operation from the list before invoking the
76 DCHECK(io_list_.find(operation) != io_list_.end());
77 io_list_.erase(make_scoped_refptr(operation));
78 OnOperationComplete(operation, cancel_tas
82 OnOperationPosted(BackgroundIO* operation) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Dehandler.c20 static const char *operation; variable
53 if (operation)
55 error_message(error), operation); local
102 if (operation)
104 error_message(error), operation); local
117 const char *ret = operation;
119 operation = op;
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drag_dest_gtk.cc75 void WebDragDestGtk::UpdateDragStatus(WebDragOperation operation) { argument
77 is_drop_target_ = operation != WebDragOperationNone;
78 gdk_drag_status(context_, gtk_util::WebDragOpToGdkDragAction(operation),

Completed in 313 milliseconds

12345