Searched defs:info (Results 501 - 525 of 2902) sorted by relevance

<<21222324252627282930>>

/external/qemu/util/
H A Dcompatfd.c35 struct sigfd_compat_info *info = opaque; local
41 err = sigwait(&info->mask, &sig);
58 len = write(info->fd, (char *)&buffer + offset,
75 struct sigfd_compat_info *info; local
79 info = malloc(sizeof(*info));
80 if (info == NULL) {
86 free(info);
93 memcpy(&info->mask, mask, sizeof(*mask));
94 info
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowConnectivityManager.java56 public void setActiveNetworkInfo(NetworkInfo info) { argument
57 activeNetwork = info;
58 if (info != null) {
59 networkTypeToNetworkInfo.put(info.getType(), info);
/external/skia/bench/
H A DRectoriBench.cpp77 SkLayerDrawLooper::LayerInfo info; local
80 info.fPaintBits = /* SkLayerDrawLooper::kColorFilter_Bit |*/
82 info.fColorMode = SkXfermode::kDst_Mode;
83 info.fOffset.set(xOff, 0);
84 info.fPostTranslate = false;
86 SkPaint* paint = looperBuilder.addLayer(info);
94 info.fPaintBits = 0;
95 info.fOffset.set(0, 0);
97 paint = looperBuilder.addLayer(info);
/external/skia/gm/
H A Dblurroundrect.cpp61 SkLayerDrawLooper::LayerInfo info; variable
62 info.fPaintBits = SkLayerDrawLooper::kMaskFilter_Bit
64 info.fColorMode = SkXfermode::kSrc_Mode;
65 info.fOffset = SkPoint::Make(SkIntToScalar(-1), SkIntToScalar(0));
66 info.fPostTranslate = false;
67 SkPaint* paint = looperBuilder.addLayerOnTop(info);
79 SkLayerDrawLooper::LayerInfo info; variable
80 looperBuilder.addLayerOnTop(info);
H A Ddrawlooper.cpp81 SkLayerDrawLooper::LayerInfo info; local
82 info.fPaintBits = SkLayerDrawLooper::kStyle_Bit | SkLayerDrawLooper::kMaskFilter_Bit;
83 info.fColorMode = SkXfermode::kSrc_Mode;
86 info.fOffset.set(gParams[i].fOffset, gParams[i].fOffset);
87 SkPaint* paint = looperBuilder.addLayer(info);
/external/skia/src/gpu/
H A DGrPictureUtils.h54 void addSaveLayerInfo(const SaveLayerInfo& info) { argument
55 SkASSERT(info.fSaveLayerOpID < info.fRestoreOpID);
56 *fSaveLayerInfo.push() = info;
/external/skia/src/lazy/
H A DSkDiscardablePixelRef.cpp12 SkDiscardablePixelRef::SkDiscardablePixelRef(const SkImageInfo& info, argument
16 : INHERITED(info)
51 const size_t size = this->info().getSafeSize(fRowBytes);
63 const SkImageInfo& info = this->info(); local
68 if (!fGenerator->getPixels(info, pixels, fRowBytes)) {
70 if (!fGenerator->getPixels(info, pixels, fRowBytes, colors, &colorCount)) {
101 SkImageInfo info; local
104 || (!autoGenerator->getInfo(&info))
105 || (!dst->setInfo(info))) {
[all...]
/external/skia/src/xml/
H A DSkXMLPullParser.cpp125 void SkXMLPullParser::getAttributeInfo(int index, AttrInfo* info) argument
129 if (info)
130 *info = fCurr.fAttrInfos[index];
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs66 * knows its state (such as current input symbol and line info) that
68 * is computed and stored at exception time. From this info, you can
103 * unexpected char doesn't carry the line info.
115 * imaginary nodes w/o line/col info. We now search backwards looking
116 * for most recent token with line/col info, but notify getErrorHeader()
117 * that info is approximate.
165 protected RecognitionException(SerializationInfo info, StreamingContext context) argument
166 : base(info, context) {
167 if (info == null)
168 throw new ArgumentNullException("info");
266 GetObjectData(SerializationInfo info, StreamingContext context) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs67 * knows its state (such as current input symbol and line info) that
69 * is computed and stored at exception time. From this info, you can
105 * unexpected char doesn't carry the line info.
117 * imaginary nodes w/o line/col info. We now search backwards looking
118 * for most recent token with line/col info, but notify getErrorHeader()
119 * that info is approximate.
186 protected RecognitionException(SerializationInfo info, StreamingContext context) argument
187 : base(info, context)
189 if (info == null)
190 throw new ArgumentNullException("info");
316 GetObjectData(SerializationInfo info, StreamingContext context) argument
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProviderTest.java59 assertEquals("Provider.id info", p.getProperty("Provider.id info"),
74 Provider p = new MyProvider("Provider name", 123.456, "Provider info");
78 assertEquals("Provider info", p.getInfo());
151 if (key.equals("Provider.id info") && val.equals("Provider for testing")) {
179 assertTrue(s1.contains("Provider.id info"));
292 assertEquals("null", myProvider.getProperty("Provider.id info"));
303 MyProvider(String name, double version, String info) { argument
304 super(name, version, info);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest_Impl2Test.java176 MyProvider(String name, double version, String info) { argument
177 super(name, version, info);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver1.java76 public Connection connect(String url, Properties info) throws SQLException { argument
105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
H A DTestHelper_Driver4.java74 public Connection connect(String url, Properties info) throws SQLException { argument
89 if (info == null) {
92 String user = (String) info.get(userProperty);
93 String password = (String) info.get(passwordProperty);
121 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java195 * @see org.apache.commons.logging.Log#info(Object)
197 public void info(Object message) { method in class:Jdk14Logger
207 * @see org.apache.commons.logging.Log#info(Object, Throwable)
209 public void info(Object message, Throwable exception) { method in class:Jdk14Logger
239 * Is info logging currently enabled?
H A DNoOpLog.java53 public void info(Object message) { } method in class:NoOpLog
55 public void info(Object message, Throwable t) { } method in class:NoOpLog
/external/bluetooth/bluedroid/bta/fs/
H A Dbta_fs_ci.c173 ** info - the stored BTA specific information (like last active operation).
183 UINT32 timeout, UINT32 offset, UINT8 ssn, UINT8 info,
202 p_evt->info = info;
182 bta_fs_ci_resume(BD_ADDR_PTR p_addr, UINT8 *p_sess_info, UINT32 timeout, UINT32 offset, UINT8 ssn, UINT8 info, tBTA_FS_CO_STATUS status, UINT16 evt) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPublicKey.java32 private transient SubjectPublicKeyInfo info; field in class:BCDHPublicKey
64 SubjectPublicKeyInfo info)
66 this.info = info;
71 derY = (ASN1Integer)info.parsePublicKey();
75 throw new IllegalArgumentException("invalid info structure in DH public key");
80 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithm().getParameters());
81 ASN1ObjectIdentifier id = info.getAlgorithm().getAlgorithm();
121 if (info != null)
123 return KeyUtil.getEncodedSubjectPublicKeyInfo(info);
63 BCDHPublicKey( SubjectPublicKeyInfo info) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java37 private PrivateKeyInfo info; field in class:JCEDHPrivateKey
60 PrivateKeyInfo info)
63 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
64 DERInteger derX = DERInteger.getInstance(info.parsePrivateKey());
65 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm();
67 this.info = info;
127 if (info != null)
129 return info.getEncoded(ASN1Encoding.DER);
132 PrivateKeyInfo info
59 JCEDHPrivateKey( PrivateKeyInfo info) argument
[all...]
H A DJCEDHPublicKey.java31 private SubjectPublicKeyInfo info; field in class:JCEDHPublicKey
63 SubjectPublicKeyInfo info)
65 this.info = info;
70 derY = (DERInteger)info.parsePublicKey();
74 throw new IllegalArgumentException("invalid info structure in DH public key");
79 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters());
80 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm();
120 if (info != null)
122 return KeyUtil.getEncodedSubjectPublicKeyInfo(info);
62 JCEDHPublicKey( SubjectPublicKeyInfo info) argument
[all...]
H A DJCERSAPrivateCrtKey.java87 * construct an RSA key from a private key info object.
90 PrivateKeyInfo info)
93 this(org.bouncycastle.asn1.pkcs.RSAPrivateKey.getInstance(info.parsePrivateKey()));
89 JCERSAPrivateCrtKey( PrivateKeyInfo info) argument
H A DJDKDSAPublicKey.java61 SubjectPublicKeyInfo info)
68 derY = (DERInteger)info.parsePublicKey();
72 throw new IllegalArgumentException("invalid info structure in DSA public key");
77 if (isNotNull(info.getAlgorithm().getParameters()))
79 DSAParameter params = DSAParameter.getInstance(info.getAlgorithm().getParameters());
60 JDKDSAPublicKey( SubjectPublicKeyInfo info) argument
/external/chromium_org/base/files/
H A Dfile_enumerator_posix.cc135 FileInfo info; local
136 info.filename_ = FilePath(dent->d_name);
141 ret = lstat(full_name.value().c_str(), &info.stat_);
143 ret = stat(full_name.value().c_str(), &info.stat_);
151 memset(&info.stat_, 0, sizeof(info.stat_));
153 entries->push_back(info);
H A Dfile_util_proxy_unittest.cc124 File::Info info; local
125 GetFileInfo(test_path(), &info); local
130 static_cast<int>(info.last_modified.ToDoubleT()));
132 static_cast<int>(info.last_accessed.ToDoubleT()));
/external/chromium_org/base/process/
H A Dprocess_metrics_freebsd.cc28 struct kinfo_proc info; local
30 size_t length = sizeof(info);
32 if (sysctl(mib, arraysize(mib), &info, &length, NULL, 0) < 0)
35 return info.ki_size;
43 struct kinfo_proc info; local
45 size_t length = sizeof(info);
47 if (sysctl(mib, arraysize(mib), &info, &length, NULL, 0) < 0)
50 return info.ki_rssize * getpagesize();
85 struct kinfo_proc info; local
87 size_t length = sizeof(info);
[all...]

Completed in 3187 milliseconds

<<21222324252627282930>>