HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 451 - 475 of 1780) sorted by null

<<11121314151617181920>>

  /system/core/toolbox/
schedtop.c 97 struct thread_info *info; local
99 info = get_item(&processes);
101 info = get_item(&threads);
102 info->pid = pid;
103 info->tid = tid;
111 if(sscanf(line, "%llu %llu %u", &info->exec_time, &info->delay_time, &info->run_count) != 3)
114 proc_info->exec_time += info->exec_time;
115 proc_info->delay_time += info->delay_time
    [all...]
  /development/samples/Home/src/com/example/android/home/
Home.java 290 ApplicationInfo info; local
307 info = getApplicationInfo(packageManager, intent);
308 if (info != null) {
309 info.intent = intent;
310 mFavorites.addFirst(info);
369 ApplicationInfo info = getApplicationInfo(manager, intent); local
370 if (info != null) {
371 info.intent = intent;
372 if (!mFavorites.contains(info)) {
373 recents.add(info);
389 final ApplicationInfo info = new ApplicationInfo(); local
502 ResolveInfo info = apps.get(i); local
616 final ApplicationInfo info = mApplications.get(position); local
    [all...]
  /external/skia/src/animator/
SkAnimatorScript2.cpp 200 const SkMemberInfo* info = displayable->getMember(name.c_str()); local
201 if (info == NULL)
202 return false; // !!! add additional error info?
203 ref->fType = SkAnimatorScript2::ToOpType(info->getType());
204 ref->fOperand.fObject = (void*) info;
209 const SkMemberInfo* info = (const SkMemberInfo* ) ref; local
211 if (info->fType == SkType_MemberProperty) {
212 if (displayable->getProperty2(info->propertyIndex(), value) == false) {
216 return fEngine->evalMemberCommon(info, displayable, value);
230 const SkMemberInfo* info = displayable->getMember(name.c_str()) local
246 const SkMemberInfo* info = (const SkMemberInfo* ) ref; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEDHPublicKey.java 58 SubjectPublicKeyInfo info)
60 DHParameter params = new DHParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
65 derY = (DERInteger)info.getPublicKey();
69 throw new IllegalArgumentException("invalid info structure in DH public key");
95 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.dhpublicnumber, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(y)); local
97 return info.getDEREncoded();
JDKDSAPublicKey.java 54 SubjectPublicKeyInfo info)
56 DSAParameter params = new DSAParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
61 derY = (DERInteger)info.getPublicKey();
65 throw new IllegalArgumentException("invalid info structure in DSA public key");
84 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(y)); local
86 return info.getDEREncoded();
  /external/iptables/extensions/
libipt_set.h 15 parse_bindings(const char *optarg, struct ipt_set_info *info)
24 info->flags[i++] |= IPSET_SRC;
26 info->flags[i++] |= IPSET_DST;
51 static void get_set_byname(const char *setname, struct ipt_set_info *info)
75 info->index = req.set.index;
  /external/kernel-headers/original/asm-x86/
smp_32.h 66 void (*func)(void *info), void *info,
98 void (*func) (void *info), void *info,
101 return smp_ops.smp_call_function_mask(mask, func, info, wait);
  /external/qemu/audio/
wavaudio.c 66 int64_t bytes = (ticks * hw->info.bytes_per_second) / ticks_per_sec;
69 samples = INT_MAX >> hw->info.shift;
72 samples = bytes >> hw->info.shift;
89 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
92 qemu_put_buffer (wav->f, dst, convert_samples << hw->info.shift);
153 audio_pcm_init_info (&hw->info, &wav_as);
156 wav->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
159 hw->samples << hw->info.shift);
163 le_store (hdr + 22, hw->info.nchannels, 2);
164 le_store (hdr + 24, hw->info.freq, 4)
    [all...]
audio_template.h 125 sw->rate = st_rate_start (sw->info.freq, sw->hw->info.freq);
127 sw->rate = st_rate_start (sw->hw->info.freq, sw->info.freq);
146 audio_pcm_init_info (&sw->info, as);
150 sw->ratio = ((int64_t) sw->hw->info.freq << 32) / sw->info.freq;
154 sw->ratio = ((int64_t) sw->info.freq << 32) / sw->hw->info.freq;
162 [sw->info.nchannels == 2
    [all...]
  /external/webkit/WebCore/rendering/
SVGMarkerLayoutInfo.cpp 47 SVGMarkerLayoutInfo& info = *reinterpret_cast<SVGMarkerLayoutInfo*>(infoPtr); local
48 SVGMarkerData& markerData = info.markerData();
49 int& elementIndex = info.elementIndex();
57 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle());
64 markerData.updateTypeAndMarker(SVGMarkerData::Mid, info.midMarker());
InlineBox.cpp 171 RenderObject::PaintInfo info(paintInfo);
172 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
173 renderer()->paint(info, tx, ty);
175 info.phase = PaintPhaseChildBlockBackgrounds;
176 renderer()->paint(info, tx, ty);
177 info.phase = PaintPhaseFloat;
178 renderer()->paint(info, tx, ty);
179 info.phase = PaintPhaseForeground;
180 renderer()->paint(info, tx, ty);
181 info.phase = PaintPhaseOutline
    [all...]
RenderLineBoxList.cpp 171 RenderObject::PaintInfo info(paintInfo);
173 info.outlineObjects = &outlineObjects;
198 int top = min(curr->topVisibleOverflow(), curr->root()->selectionTop()) - renderer->maximalOutlineSize(info.phase);
199 int bottom = curr->bottomVisibleOverflow() + renderer->maximalOutlineSize(info.phase);
203 if (yPos < info.rect.bottom() && yPos + h > info.rect.y())
204 curr->paint(info, tx, ty);
207 if (info.phase == PaintPhaseOutline || info.phase == PaintPhaseSelfOutline || info.phase == PaintPhaseChildOutlines)
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uexception.h 74 virtual void info (string& msgbuf, const char* fmt = NULL) const throw();
79 /// Format of the exception is used to lookup exception::info format string.
117 virtual void info (string& msgbuf, const char* fmt = NULL) const throw();
138 virtual void info (string& msgbuf, const char* fmt = NULL) const throw();
158 virtual void info (string& msgbuf, const char* fmt = NULL) const throw();
178 virtual void info (string& msgbuf, const char* fmt = NULL) const throw();
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 389 * info A pointer to an information block for the section
394 * load_addr and run_addr fields of the section info structure. Returns TRUE
404 struct LDR_SECTION_INFO * info, unsigned align);
410 * info A pointer to an information block for the section
416 * The content of the info->name field is undefined on call to this function.
419 struct LDR_SECTION_INFO * info);
454 * info Section info for the section in which the address resides
462 LDR_ADDR locn, struct LDR_SECTION_INFO * info,
471 * info Section info for the section in which the address reside
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_N.c 149 static void Blit_RGB888_RGB565(SDL_BlitInfo *info);
150 static void Blit_RGB888_RGB565Altivec(SDL_BlitInfo *info) {
151 int height = info->d_height;
152 Uint8 *src = (Uint8 *) info->s_pixels;
153 int srcskip = info->s_skip;
154 Uint8 *dst = (Uint8 *) info->d_pixels;
155 int dstskip = info->d_skip;
156 SDL_PixelFormat *srcfmt = info->src;
180 int width = info->d_width;
251 static void Blit_RGB565_32Altivec(SDL_BlitInfo *info) {
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/mint/
SDL_syscdrom.c 76 struct cdrom_subchnl info; local
104 info.cdsc_format = CDROM_MSF;
105 if ( (Metaioctl(i, METADOS_IOCTL_MAGIC, CDROMSUBCHNL, &info) == 0) || ERRNO_TRAYEMPTY(errno) ) {
223 struct cdrom_subchnl info; local
225 info.cdsc_format = CDROM_MSF;
226 if ( SDL_SYS_CDioctl(cdrom->id, CDROMSUBCHNL, &info) < 0 ) {
233 switch (info.cdsc_audiostatus) {
251 if ( info.cdsc_trk == CDROM_LEADOUT ) {
265 info.cdsc_absaddr.msf.minute,
266 info.cdsc_absaddr.msf.second
    [all...]
  /external/opencore/tools_v2/build/make/
library.mk 12 #$(info LOCAL_PATH = $(LOCAL_PATH))
13 #$(info LOCAL_SRCDIR = $(LOCAL_SRCDIR))
14 #$(info TMP_SRCDIR = $(TMP_SRCDIR))
15 #$(info LOCAL_INCSRCDIR = $(LOCAL_INCSRCDIR))
35 # $(info plugins to include $(TARGET) = $(MY_TARGET_PLUGINS))
69 # $(info target = $(TARGET), libtype = $($(TARGET)_libtype))
119 #$(info src_root = $(abspath $(SRC_ROOT)))
120 #$(info build_root = $(abspath $(BUILD_ROOT)))
121 #$(info objdir = $(OBJDIR))
138 # $(info DEPS = $(DEPS)
    [all...]
  /external/webkit/JavaScriptCore/runtime/
RegExpPrototype.cpp 48 const ClassInfo RegExpPrototype::info = { "RegExpPrototype", 0, 0, 0 }; member in class:JSC::RegExpPrototype
63 if (!thisValue.inherits(&RegExpObject::info))
70 if (!thisValue.inherits(&RegExpObject::info))
77 if (!thisValue.inherits(&RegExpObject::info))
84 if (arg0.inherits(&RegExpObject::info)) {
104 if (!thisValue.inherits(&RegExpObject::info)) {
105 if (thisValue.inherits(&RegExpPrototype::info))
  /frameworks/base/core/java/android/appwidget/
AppWidgetManager.java 303 * Get the available info about the AppWidget.
310 AppWidgetProviderInfo info = sService.getAppWidgetInfo(appWidgetId); local
311 if (info != null) {
313 info.minWidth =
314 TypedValue.complexToDimensionPixelSize(info.minWidth, mDisplayMetrics);
315 info.minHeight =
316 TypedValue.complexToDimensionPixelSize(info.minHeight, mDisplayMetrics);
318 return info;
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 133 for (ServiceInfo info : services.values()) {
134 fout.println(" " + info);
260 ServiceInfo<V> info = parseServiceInfo(resolveInfo); local
261 if (info == null) {
262 Log.w(TAG, "Unable to load service info " + resolveInfo.toString());
265 serviceInfos.add(info);
267 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
269 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
285 for (ServiceInfo<V> info : serviceInfos) {
295 Integer previousUid = mPersistentServices.get(info.type)
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteDebug.cpp 59 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace()); local
60 struct mallinfo info = dlmallinfo(); local
61 return (jlong) info.usmblks;
77 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace()); local
78 return (jlong) info.uordblks;
87 struct mallinfo info = mspace_mallinfo(sqlite3_get_mspace()); local
88 return (jlong) info.fordblks;
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu_linux.c 99 struct ethtool_drvinfo info; local
106 memset(&info, 0, sizeof(info));
107 info.cmd = ETHTOOL_GDRVINFO;
108 strcpy(info.driver, "?dhd");
109 ifr.ifr_data = (caddr_t)&info;
120 strncpy(buf, info.driver, len);
  /external/qemu/hw/
qdev.c 45 DeviceInfo *info; member in struct:DeviceType
55 void qdev_register(DeviceInfo *info)
59 assert(info->size >= sizeof(DeviceState));
64 t->info = info;
76 if (strcmp(t->info->name, name) == 0) {
84 dev = qemu_mallocz(t->info->size);
95 if (t->info->bus_type != bus->type) {
98 t->info->bus_type, bus->type);
110 dev->type->info->init(dev, dev->type->info)
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 410 * @return the info for the active network, or {@code null} if none is
420 NetworkInfo info = t.getNetworkInfo(); local
421 if (info.isConnected()) {
425 return info;
1372 NetworkInfo info; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 125 for (ViewClassInfo info : views) {
126 ElementDescriptor desc = convertView(info, infoDescMap);
137 for (ViewClassInfo info : layouts) {
138 ElementDescriptor desc = convertView(info, infoDescMap);
173 * @param info The {@link ViewClassInfo} to convert into a new {@link ViewElementDescriptor}.
178 ViewClassInfo info,
180 String xml_name = info.getShortClassName();
181 String tooltip = info.getJavaDoc();
203 info.getAttributes(),
207 for (ViewClassInfo link = info.getSuperClass()
373 ViewClassInfo info = entry.getKey(); local
    [all...]

Completed in 968 milliseconds

<<11121314151617181920>>