HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 651 - 675 of 14015) sorted by null

<<21222324252627282930>>

  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportProgressService.java 164 static final String EXTRA_INFO = "android.intent.extra.INFO";
307 writer.println(mProcesses.valueAt(i).info);
420 return listener.info;
446 final BugreportInfo info = new BugreportInfo(mContext, id, pid, name, max); local
452 final DumpstateListener listener = new DumpstateListener(info);
453 mProcesses.put(info.id, listener);
455 updateProgress(info);
466 private void updateProgress(BugreportInfo info) {
467 if (info.max <= 0 || info.progress < 0)
586 final BugreportInfo info = getInfo(id); local
601 final BugreportInfo info = getInfo(id); local
672 final BugreportInfo info = getInfo(id); local
691 final BugreportInfo info = mProcesses.valueAt(i).info; local
713 final BugreportInfo info = getInfo(resultMsg.arg1); local
763 final BugreportInfo info = mProcesses.valueAt(i).info; local
795 BugreportInfo info = getInfo(id); local
941 BugreportInfo info = getInfo(id); local
1339 final BugreportInfo info = getInfo(id); local
1890 private final BugreportInfo info; field in class:BugreportProgressService.DumpstateListener
    [all...]
  /bionic/libc/bionic/
wait.cpp 32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
42 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) {
44 return __waitid(which, id, info, options, NULL);
  /bionic/linker/
linker.h 61 #define ELF64_R_SYM(info) (((info) >> 0) & 0xffffffff)
62 #define ELF64_R_SSYM(info) (((info) >> 32) & 0xff)
63 #define ELF64_R_TYPE3(info) (((info) >> 40) & 0xff)
64 #define ELF64_R_TYPE2(info) (((info) >> 48) & 0xff)
65 #define ELF64_R_TYPE(info) (((info) >> 56) & 0xff
    [all...]
  /cts/tests/accessibility/src/android/view/accessibility/cts/
SpeakingAccessibilityService.java 38 final AccessibilityServiceInfo info = getServiceInfo(); local
39 info.flags |= AccessibilityServiceInfo.FLAG_REQUEST_TOUCH_EXPLORATION_MODE;
40 setServiceInfo(info);
VibratingAccessibilityService.java 38 final AccessibilityServiceInfo info = getServiceInfo(); local
39 info.flags |= AccessibilityServiceInfo.FLAG_REQUEST_TOUCH_EXPLORATION_MODE;
40 setServiceInfo(info);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
elf32.h 148 #define ELF32_R_SYM(info) ((info) >> 8)
149 #define ELF32_R_TYPE(info) ((unsigned char)(info))
167 Elf32_Half m_stride; /* stride info */
177 #define ELF32_M_SYM(info) ((info)>>8)
178 #define ELF32_M_SIZE(info) ((unsigned char)(info))
206 #define ELF32_ST_BIND(info) ((info) >> 4)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
elf32.h 148 #define ELF32_R_SYM(info) ((info) >> 8)
149 #define ELF32_R_TYPE(info) ((unsigned char)(info))
167 Elf32_Half m_stride; /* stride info */
177 #define ELF32_M_SYM(info) ((info)>>8)
178 #define ELF32_M_SIZE(info) ((unsigned char)(info))
206 #define ELF32_ST_BIND(info) ((info) >> 4)
    [all...]
  /external/ImageMagick/tests/
cli-pipe.tap 24 ${MAGICK} pnm:- info: < ${SRCDIR}/rose.pnm && echo "ok" || echo "not ok"
28 ${MAGICK} ${SRCDIR}/rose.pnm -write info: null: && echo "ok" || echo "not ok"
34 ${MAGICK} -read ${SRCDIR}/rose.pnm info: && echo "ok" || echo "not ok"
36 ${MAGICK} ${SRCDIR}/rose.pnm -write info: -exit && echo "ok" || echo "not ok"
40 ${MAGICK} ${SRCDIR}/rose.pnm -write info: +delete null: && echo "ok" || echo "not ok"
45 ${MAGICK} fd:5 info: && echo "ok" || echo "not ok"
48 echo "-read ${SRCDIR}/rose.pnm -write info:" | ${MAGICK} -script - && echo "ok" || echo "not ok"
50 echo "-write info:" | ${MAGICK} ${SRCDIR}/rose.pnm -script - && echo "ok" || echo "not ok"
52 echo "-read pnm:- -write info:" |\
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
NoViableAltException.cs 83 protected NoViableAltException(SerializationInfo info, StreamingContext context)
84 : base(info, context) {
85 if (info == null)
86 throw new ArgumentNullException("info");
88 this._grammarDecisionDescription = info.GetString("GrammarDecisionDescription");
89 this._decisionNumber = info.GetInt32("DecisionNumber");
90 this._stateNumber = info.GetInt32("StateNumber");
111 public override void GetObjectData(SerializationInfo info, StreamingContext context) {
112 if (info == null)
113 throw new ArgumentNullException("info");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
NoViableAltException.cs 92 protected NoViableAltException(SerializationInfo info, StreamingContext context)
93 : base(info, context)
95 if (info == null)
96 throw new ArgumentNullException("info");
98 this._grammarDecisionDescription = info.GetString("GrammarDecisionDescription");
99 this._decisionNumber = info.GetInt32("DecisionNumber");
100 this._stateNumber = info.GetInt32("StateNumber");
127 public override void GetObjectData(SerializationInfo info, StreamingContext context)
129 if (info == null)
130 throw new ArgumentNullException("info");
    [all...]
  /external/autotest/server/site_tests/platform_InstallRecoveryImage/
platform_InstallRecoveryImage.py 20 logging.info('Running the recovery process on the DUT. '
26 logging.info('Recovery process completed successfully in '
31 logging.info('Removing the usb key from the DUT.')
  /external/elfutils/libdw/
dwarf_linesrc.c 50 *mtime = line->files->info[line->file].mtime;
53 *length = line->files->info[line->file].length;
55 return line->files->info[line->file].name;
  /external/elfutils/tests/
allregs.c 68 struct reginfo *info; member in struct:state
110 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]);
111 memset (&state->info[state->nregs], 0,
112 ((void *) &state->info[regno + 1]
113 - (void *) &state->info[state->nregs]));
117 state->info[regno].regno = regno;
118 state->info[regno].set = setname;
119 state->info[regno].pfx = prefix
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
versioning_test_service.cc 39 EmployeeInfo* info = new EmployeeInfo(); local
40 employees_[1] = info;
41 info->employee = Employee::New();
42 info->employee->employee_id = 1;
43 info->employee->name = "Homer Simpson";
44 info->employee->department = DEPARTMENT_DEV;
45 info->employee->birthday = Date::New();
46 info->employee->birthday->year = 1955;
47 info->employee->birthday->month = 5;
48 info->employee->birthday->day = 12
    [all...]
  /external/skia/src/core/
SkAutoPixmapStorage.h 25 * Try to allocate memory for the pixels needed to match the specified Info. On success
34 * Allocate memory for the pixels needed to match the specified Info and fill out the pixmap
46 static size_t AllocSize(const SkImageInfo& info, size_t* rowBytes);
60 void reset(const SkImageInfo& info, const void* addr, size_t rb) {
62 this->INHERITED::reset(info, addr, rb);
SkWritePixelsRec.h 17 SkWritePixelsRec(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y)
20 , fInfo(info)
28 , fInfo(pm.info())
  /external/skia/src/image/
SkReadPixelsRec.h 17 SkReadPixelsRec(const SkImageInfo& info, void* pixels, size_t rowBytes, int x, int y)
20 , fInfo(info)
28 , fInfo(pm.info())
  /external/skia/tests/
BitmapTest.cpp 15 const SkImageInfo info = SkImageInfo::MakeN32Premul(10, 10); local
30 bm.allocPixels(info);
33 REPORTER_ASSERT(reporter, pmap.info() == bm.info());
42 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height); local
45 REPORTER_ASSERT(reporter, !bm.tryAllocPixels(info));
47 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeAllocate(info, info.minRowBytes());
54 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height); local
55 const size_t explicitRowBytes = info.minRowBytes() + 24
91 SkImageInfo info = SkImageInfo::MakeA8(width, 1); local
    [all...]
  /external/skqp/src/core/
SkAutoPixmapStorage.h 25 * Try to allocate memory for the pixels needed to match the specified Info. On success
34 * Allocate memory for the pixels needed to match the specified Info and fill out the pixmap
46 static size_t AllocSize(const SkImageInfo& info, size_t* rowBytes);
60 void reset(const SkImageInfo& info, const void* addr, size_t rb) {
62 this->INHERITED::reset(info, addr, rb);
SkWritePixelsRec.h 17 SkWritePixelsRec(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y)
20 , fInfo(info)
28 , fInfo(pm.info())
  /external/skqp/src/image/
SkReadPixelsRec.h 17 SkReadPixelsRec(const SkImageInfo& info, void* pixels, size_t rowBytes, int x, int y)
20 , fInfo(info)
28 , fInfo(pm.info())
  /external/skqp/tests/
BitmapTest.cpp 15 const SkImageInfo info = SkImageInfo::MakeN32Premul(10, 10); local
30 bm.allocPixels(info);
33 REPORTER_ASSERT(reporter, pmap.info() == bm.info());
42 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height); local
45 REPORTER_ASSERT(reporter, !bm.tryAllocPixels(info));
47 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeAllocate(info, info.minRowBytes());
54 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height); local
55 const size_t explicitRowBytes = info.minRowBytes() + 24
91 SkImageInfo info = SkImageInfo::MakeA8(width, 1); local
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/src/main/java/test/
Log4j13Calls.java 35 logger.info("Violets are blue");
37 logger.info("The answer is {}.", new Integer(42));
38 logger.info("Number: {} and another one: {}.", new Integer(42), new Integer(24));
  /external/v8/tools/clang/blink_gc_plugin/
DiagnosticsReporter.cpp 274 RecordInfo* info) {
275 ReportDiagnostic(info->record()->getInnerLocStart(),
277 << info->record();
280 void DiagnosticsReporter::ClassRequiresTraceMethod(RecordInfo* info) {
281 ReportDiagnostic(info->record()->getInnerLocStart(),
283 << info->record();
285 for (auto& base : info->GetBases())
289 for (auto& field : info->GetFields())
291 NoteFieldRequiresTracing(info, field.first);
303 RecordInfo* info,
    [all...]
  /frameworks/base/libs/hwui/hwui/
Bitmap.cpp 50 typedef sk_sp<Bitmap> (*AllocPixelRef)(size_t allocSize, const SkImageInfo& info, size_t rowBytes);
53 const SkImageInfo& info = bitmap->info(); local
54 if (info.colorType() == kUnknown_SkColorType) {
68 auto wrapper = alloc(size, info, rowBytes);
79 static sk_sp<Bitmap> allocateHeapBitmap(size_t size, const SkImageInfo& info, size_t rowBytes) {
84 return sk_sp<Bitmap>(new Bitmap(addr, size, info, rowBytes));
95 sk_sp<Bitmap> Bitmap::allocateHeapBitmap(const SkImageInfo& info) {
97 if (!computeAllocationSize(info.minRowBytes(), info.height(), &size))
142 SkImageInfo info = SkImageInfo::Make(graphicBuffer->getWidth(), graphicBuffer->getHeight(), local
    [all...]

Completed in 772 milliseconds

<<21222324252627282930>>