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

12345678910

/external/iptables/include/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/chromium_org/third_party/boringssl/src/crypto/dh/
H A Ddh_asn1.c64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
66 if (operation == ASN1_OP_NEW_PRE) {
72 } else if (operation == ASN1_OP_FREE_PRE) {
/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/chromium_org/third_party/WebKit/Source/core/page/
H A DDragSession.h34 DragOperation operation; member in struct:blink::DragSession
39 : operation(DragOperationNone)
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dp8_pkey.c63 /* Minor tweak to operation: zero private key data */
64 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation == ASN1_OP_FREE_PRE) {
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_pubkey.c68 /* Minor tweak to operation: free up EVP_PKEY */
69 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
72 if (operation == ASN1_OP_FREE_POST)
H A Dx_req.c81 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
86 if(operation == ASN1_OP_NEW_POST) {
H A Dx_x509.c87 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
92 switch(operation) {
H A Dx_crl.c98 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
104 switch(operation) {
213 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
221 switch(operation)
/external/chromium_org/ui/views/examples/
H A Dexamples_window_with_content.cc13 void ShowExamplesWindowWithContent(Operation operation, argument
19 ShowExamplesWindow(operation, window_context, extra_examples.Pass());
/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) {
/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/chromium_org/base/mac/
H A Dlaunchd.cc14 // mapping |operation| to |job_label|, and returns the result of calling
18 const char* operation) {
38 operation)) {
17 MessageForJob(const std::string& job_label, const char* operation) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableClipPathOperation.cpp63 const ClipPathOperation* operation = toAnimatableClipPathOperation(value)->m_operation.get(); local
64 return m_operation == operation || (m_operation && operation && *m_operation == *operation);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebCryptoNormalize.cpp43 WebCryptoAlgorithm normalizeCryptoAlgorithm(v8::Handle<v8::Object> algorithmObject, WebCryptoOperation operation, int* exceptionCode, WebString* errorDetails, v8::Isolate* isolate) argument
50 if (!normalizeAlgorithm(algorithmDictionary, operation, algorithm, &error)) {
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c65 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation != ASN1_OP_NEW_PRE) {
90 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
92 switch (operation) {
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Drsa_asn1.c65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation == ASN1_OP_NEW_PRE) {
73 } else if (operation == ASN1_OP_FREE_PRE) {
/external/chromium_org/ui/views/
H A Ddrag_utils_aura.cc16 int operation,
23 data, root_window, view, root_location, operation, source);
13 RunShellDrag(gfx::NativeView view, const ui::OSExchangeData& data, const gfx::Point& location, int operation, ui::DragDropTypes::DragEventSource source) argument
/external/libvorbis/doc/
H A D03-codebook.tex18 \subsubsection{Bitwise operation}
195 An 'end of packet' during any read operation in the above steps is

Completed in 811 milliseconds

12345678910