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

1 2 3 4 5 67 8 91011>>

  /external/skqp/src/utils/mac/
SkStream_mac.cpp 18 static void unref_proc(void* info, const void* addr, size_t size) {
19 SkASSERT(info);
20 ((SkRefCnt*)info)->unref();
23 static void delete_stream_proc(void* info, const void* addr, size_t size) {
24 SkASSERT(info);
25 SkStream* stream = (SkStream*)info;
33 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) {
34 SkASSERT(info);
35 return ((SkStream*)info)->read(buffer, bytes);
38 static off_t skip_forward_proc(void* info, off_t bytes)
    [all...]
  /external/iptables/extensions/
libxt_helper.c 25 struct xt_helper_info *info = cb->data; local
29 info->invert = 1;
35 const struct xt_helper_info *info = (const void *)match->data; local
37 printf(" helper match %s\"%s\"", info->invert ? "! " : "", info->name);
42 const struct xt_helper_info *info = (const void *)match->data; local
44 printf("%s --helper", info->invert ? " !" : "");
45 xtables_save_string(info->name);
51 const struct xt_helper_info *info = (const void *)params->match->data; local
55 info->invert ? " !=" : "", info->name)
    [all...]
libxt_cgroup.c 65 struct xt_cgroup_info_v1 *info = cb->data; local
71 info->has_path = true;
73 info->invert_path = true;
76 info->has_classid = true;
78 info->invert_classid = true;
86 const struct xt_cgroup_info_v0 *info = (void *) match->data; local
88 printf(" cgroup %s%u", info->invert ? "! ":"", info->id);
93 const struct xt_cgroup_info_v0 *info = (void *) match->data; local
95 printf("%s --cgroup %u", info->invert ? " !" : "", info->id)
101 const struct xt_cgroup_info_v1 *info = (void *)match->data; local
112 const struct xt_cgroup_info_v1 *info = (void *)match->data; local
127 const struct xt_cgroup_info_v0 *info = (void *)params->match->data; local
137 const struct xt_cgroup_info_v1 *info = (void *)params->match->data; local
    [all...]
libxt_iprange.c 98 struct ipt_iprange_info *info = cb->data; local
104 info->flags |= IPRANGE_SRC;
106 info->flags |= IPRANGE_SRC_INV;
109 info->src.min_ip = range[0].ip;
110 info->src.max_ip = range[1].ip;
113 info->flags |= IPRANGE_DST;
115 info->flags |= IPRANGE_DST_INV;
118 info->dst.min_ip = range[0].ip;
119 info->dst.max_ip = range[1].ip;
126 struct xt_iprange_mtinfo *info = cb->data local
179 const struct ipt_iprange_info *info = (const void *)match->data; local
199 const struct xt_iprange_mtinfo *info = (const void *)match->data; local
225 const struct xt_iprange_mtinfo *info = (const void *)match->data; local
249 const struct ipt_iprange_info *info = (const void *)match->data; local
267 const struct xt_iprange_mtinfo *info = (const void *)match->data; local
287 const struct xt_iprange_mtinfo *info = (const void *)match->data; local
321 const struct ipt_iprange_info *info = (const void *)params->match->data; local
342 const struct xt_iprange_mtinfo *info = local
368 const struct xt_iprange_mtinfo *info = local
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/
BlinkGCPluginConsumer.h 34 void CheckRecord(RecordInfo* info);
37 void CheckClass(RecordInfo* info);
41 void CheckPolymorphicClass(RecordInfo* info, clang::CXXMethodDecl* trace);
47 void CheckLeftMostDerived(RecordInfo* info);
49 void CheckDispatch(RecordInfo* info);
51 void CheckFinalization(RecordInfo* info);
53 void CheckUnneededFinalization(RecordInfo* info);
55 bool HasNonEmptyFinalizer(RecordInfo* info);
69 void DumpClass(RecordInfo* info);
76 bool IsIgnored(RecordInfo* info);
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-dis.c 69 print_insn_ia64 (bfd_vma memaddr, struct disassemble_info *info)
81 if (info->bytes_per_line == 0)
82 info->bytes_per_line = 6;
83 info->display_endian = info->endian;
85 slot_multiplier = info->bytes_per_line;
93 status = (*info->read_memory_func) (memaddr, bundle, sizeof (bundle), info);
96 (*info->memory_error_func) (status, memaddr, info);
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_dev.c 40 const struct intel_winsys_info *info; local
44 info = intel_winsys_get_info(winsys);
47 dev->devid = info->devid;
48 dev->aperture_total = info->aperture_total;
49 dev->aperture_mappable = info->aperture_mappable;
50 dev->has_llc = info->has_llc;
51 dev->has_address_swizzling = info->has_address_swizzling;
52 dev->has_logical_context = info->has_logical_context;
53 dev->has_ppgtt = info->has_ppgtt;
54 dev->has_timestamp = info->has_timestamp
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
fs-frontface.c 12 static struct graw_info info; variable in typeref:struct:graw_info
86 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
87 info.ctx->bind_vertex_elements_state(info.ctx, handle);
93 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
99 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
117 handle = graw_parse_vertex_shader(info.ctx, text);
118 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
keycodes.c 62 InitAliasInfo(AliasInfo *info, enum merge_mode merge,
65 memset(info, 0, sizeof(*info));
66 info->merge = merge;
67 info->alias = alias;
68 info->real = real;
72 FindLedByName(KeyNamesInfo *info, xkb_atom_t name,
75 for (xkb_led_index_t idx = 0; idx < info->num_led_names; idx++) {
76 LedNameInfo *ledi = &info->led_names[idx];
87 AddLedName(KeyNamesInfo *info, enum merge_mode merge, bool same_file
651 KeyNamesInfo info; local
    [all...]
  /device/linaro/hikey/gralloc960/
framebuffer_device.cpp 88 0, 0, m->info.xres, m->info.yres, NULL);
92 m->info.activate = FB_ACTIVATE_VBL;
93 m->info.yoffset = offset / m->finfo.line_length;
97 if (ioctl(fbdev_fd, FBIOPAN_DISPLAY, &m->info) == -1)
104 if (ioctl(fbdev_fd, FBIOPUT_VSCREENINFO, &m->info) == -1)
125 0, 0, m->info.xres, m->info.yres, &fb_vaddr);
128 0, 0, m->info.xres, m->info.yres, &buffer_vaddr)
195 struct fb_var_screeninfo info; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 55 AttributeInfo info = new AttributeInfo("test", EnumSet.noneOf(Format.class)); local
56 assertTrue(info.isValid("", null, null));
57 assertTrue(info.isValid("a b c", null, null));
58 assertTrue(info.isValid("@android foo bar", null, null));
62 AttributeInfo info = new AttributeInfo("test", Format.STRING_SET); local
63 assertTrue(info.isValid("", null, null));
64 assertTrue(info.isValid("a b c", null, null));
65 assertTrue(info.isValid("@android foo bar", null, null));
69 AttributeInfo info = new AttributeInfo("test", Format.BOOLEAN_SET); local
70 assertTrue(info.isValid("true", null, null))
80 AttributeInfo info = new AttributeInfo("test", Format.INTEGER_SET); local
95 AttributeInfo info = new AttributeInfo("test", Format.FLOAT_SET); local
115 AttributeInfo info = new AttributeInfo("test", Format.DIMENSION_SET); local
133 AttributeInfo info = new AttributeInfo("test", Format.COLOR_SET); local
146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION)); local
158 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local
174 AttributeInfo info = new AttributeInfo("test", Format.ENUM_SET); local
184 AttributeInfo info = new AttributeInfo("test", Format.FLAG_SET); local
196 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.INTEGER, local
204 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.COLOR, local
212 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.STRING, local
219 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.ENUM, local
233 AttributeInfo info = new AttributeInfo("test", Format.REFERENCE_SET); local
351 AttributeInfo info = map.get(name); local
    [all...]
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_utils_v1_0.h 67 Return<void> getIccCardStatusResponse(const RadioResponseInfo& info,
70 Return<void> supplyIccPinForAppResponse(const RadioResponseInfo& info,
73 Return<void> supplyIccPukForAppResponse(const RadioResponseInfo& info,
76 Return<void> supplyIccPin2ForAppResponse(const RadioResponseInfo& info,
79 Return<void> supplyIccPuk2ForAppResponse(const RadioResponseInfo& info,
82 Return<void> changeIccPinForAppResponse(const RadioResponseInfo& info,
85 Return<void> changeIccPin2ForAppResponse(const RadioResponseInfo& info,
88 Return<void> supplyNetworkDepersonalizationResponse(const RadioResponseInfo& info,
91 Return<void> getCurrentCallsResponse(const RadioResponseInfo& info,
94 Return<void> dialResponse(const RadioResponseInfo& info);
    [all...]
  /device/linaro/hikey/gralloc/
framebuffer_device.cpp 86 0, 0, m->info.xres, m->info.yres, NULL);
90 m->info.activate = FB_ACTIVATE_VBL;
91 m->info.yoffset = offset / m->finfo.line_length;
99 if (ioctl(fbdev_fd, FBIOPAN_DISPLAY, &m->info) == -1)
151 if (ioctl(fbdev_fd, FBIOPUT_VSCREENINFO, &m->info) == -1)
174 0, 0, m->info.xres, m->info.yres, &fb_vaddr);
177 0, 0, m->info.xres, m->info.yres, &buffer_vaddr)
225 struct fb_var_screeninfo info; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
prdbg.c 300 struct pr_handle info;
302 info.f = f;
303 info.indent = 0;
304 info.stack = NULL;
305 info.parameter = 0;
306 info.filename = NULL;
307 info.abfd = abfd;
308 info.syms = syms;
309 info.demangler = demangler;
319 return as_tags ? debug_write (dhandle, &tg_fns, (void *) & info)
297 struct pr_handle info; local
535 struct pr_handle *info = (struct pr_handle *) p; local
549 struct pr_handle *info = (struct pr_handle *) p; local
563 struct pr_handle *info = (struct pr_handle *) p; local
573 struct pr_handle *info = (struct pr_handle *) p; local
583 struct pr_handle *info = (struct pr_handle *) p; local
595 struct pr_handle *info = (struct pr_handle *) p; local
612 struct pr_handle *info = (struct pr_handle *) p; local
625 struct pr_handle *info = (struct pr_handle *) p; local
639 struct pr_handle *info = (struct pr_handle *) p; local
696 struct pr_handle *info = (struct pr_handle *) p; local
712 struct pr_handle *info = (struct pr_handle *) p; local
792 struct pr_handle *info = (struct pr_handle *) p; local
804 struct pr_handle *info = (struct pr_handle *) p; local
828 struct pr_handle *info = (struct pr_handle *) p; local
877 struct pr_handle *info = (struct pr_handle *) p; local
900 struct pr_handle *info = (struct pr_handle *) p; local
921 struct pr_handle *info = (struct pr_handle *) p; local
1023 struct pr_handle *info = (struct pr_handle *) p; local
1033 struct pr_handle *info = (struct pr_handle *) p; local
1044 struct pr_handle *info = (struct pr_handle *) p; local
1153 struct pr_handle *info = (struct pr_handle *) p; local
1194 struct pr_handle *info = (struct pr_handle *) p; local
1219 struct pr_handle *info = (struct pr_handle *) p; local
1306 struct pr_handle *info = (struct pr_handle *) p; local
1335 struct pr_handle *info = (struct pr_handle *) p; local
1430 struct pr_handle *info = (struct pr_handle *) p; local
1445 struct pr_handle *info = (struct pr_handle *) p; local
1524 struct pr_handle *info = (struct pr_handle *) p; local
1573 struct pr_handle *info = (struct pr_handle *) p; local
1592 struct pr_handle *info = (struct pr_handle *) p; local
1603 struct pr_handle *info = (struct pr_handle *) p; local
1656 struct pr_handle *info = (struct pr_handle *) p; local
1680 struct pr_handle *info = (struct pr_handle *) p; local
1700 struct pr_handle *info = (struct pr_handle *) p; local
1714 struct pr_handle *info = (struct pr_handle *) p; local
1726 struct pr_handle *info = (struct pr_handle *) p; local
1749 struct pr_handle *info = (struct pr_handle *) p; local
1786 struct pr_handle *info = (struct pr_handle *) p; local
1812 struct pr_handle *info = (struct pr_handle *) p; local
1851 struct pr_handle *info = (struct pr_handle *) p; local
1874 struct pr_handle *info = (struct pr_handle *) p; local
1889 struct pr_handle *info = (struct pr_handle *) p; local
1964 struct pr_handle *info = (struct pr_handle *) p; local
1978 struct pr_handle *info = (struct pr_handle *) p; local
1993 struct pr_handle *info = (struct pr_handle *) p; local
2028 struct pr_handle *info = (struct pr_handle *) p; local
2077 struct pr_handle *info = (struct pr_handle *) p; local
2115 struct pr_handle *info = (struct pr_handle *) p; local
2177 struct pr_handle *info = (struct pr_handle *) p; local
2230 struct pr_handle *info = (struct pr_handle *) p; local
2298 struct pr_handle *info = (struct pr_handle *) p; local
2376 struct pr_handle *info = (struct pr_handle *) p; local
2438 struct pr_handle *info = (struct pr_handle *) p; local
2458 struct pr_handle *info = (struct pr_handle *) p; local
2505 struct pr_handle *info = (struct pr_handle *) p; local
2526 struct pr_handle *info = (struct pr_handle *) p; local
2542 struct pr_handle *info = (struct pr_handle *) p; local
2557 struct pr_handle *info = (struct pr_handle *) p; local
2570 struct pr_handle *info = (struct pr_handle *) p; local
2594 struct pr_handle *info = (struct pr_handle *) p; local
2654 struct pr_handle *info = (struct pr_handle *) p; local
2707 struct pr_handle *info = (struct pr_handle *) p; local
2749 struct pr_handle *info = (struct pr_handle *) p; local
    [all...]
  /build/kati/testcase/
crlf_after_directive.mk 3 $(info PASS)
multiline_and_leading_space.mk 8 $(info foo \
  /cts/tests/admin/src/android/admin/cts/
DeviceAdminInfoTest.java 72 DeviceAdminInfo info = new DeviceAdminInfo(mContext, resolveInfo); local
73 assertEquals(mComponent, info.getComponent());
74 assertEquals(mComponent.getPackageName(), info.getPackageName());
75 assertEquals(mComponent.getClassName(), info.getReceiverName());
77 assertFalse(info.supportsTransferOwnership());
78 assertTrue(info.usesPolicy(DeviceAdminInfo.USES_POLICY_FORCE_LOCK));
79 assertTrue(info.usesPolicy(DeviceAdminInfo.USES_POLICY_LIMIT_PASSWORD));
80 assertTrue(info.usesPolicy(DeviceAdminInfo.USES_POLICY_RESET_PASSWORD));
81 assertTrue(info.usesPolicy(DeviceAdminInfo.USES_POLICY_WATCH_LOGIN));
82 assertTrue(info.usesPolicy(DeviceAdminInfo.USES_POLICY_WIPE_DATA))
105 DeviceAdminInfo info = new DeviceAdminInfo(mContext, resolveInfo); local
138 DeviceAdminInfo info = new DeviceAdminInfo(mContext, resolveInfo); local
    [all...]
  /development/tools/idegen/src/
Log.java 26 info(message);
30 static void info(String message) { method in class:Log
  /external/aac/libSACdec/src/
sac_dec_conceal.cpp 92 amm-info@iis.fraunhofer.de
105 void SpatialDecConcealment_Init(SpatialDecConcealmentInfo *info,
107 FDK_ASSERT(info != NULL);
110 info->concealState = SpatialDecConcealState_Init;
117 info->concealParams.method = MPEGS_CONCEAL_DEFAULT_METHOD;
118 info->concealParams.numKeepFrames = MPEGS_CONCEAL_DEFAULT_NUM_KEEP_FRAMES;
119 info->concealParams.numFadeOutFrames =
121 info->concealParams.numFadeInFrames =
123 info->concealParams.numReleaseFrames =
131 SpatialDecConcealmentInfo *info,
    [all...]
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 10 min_info info[1]; member in struct:Globals
17 G.pInfo = G.info;
  /external/eigen/blas/
xerbla.cpp 15 EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int)
17 printf("Eigen BLAS ERROR #%i: %s\n", *info, msg );
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Reporter.java 28 void info(String message); method in interface:Reporter
33 void info(ASTNode node, String message); method in interface:Reporter
  /external/vogar/src/vogar/
Log.java 24 void info(String s); method in interface:Log
25 void info(String s, Throwable exception); method in interface:Log
  /frameworks/base/core/java/android/hardware/
CameraInfo.java 30 public Camera.CameraInfo info = new Camera.CameraInfo(); field in class:CameraInfo
39 out.writeInt(info.facing);
40 out.writeInt(info.orientation);
44 info.facing = in.readInt();
45 info.orientation = in.readInt();
52 CameraInfo info = new CameraInfo();
53 info.readFromParcel(in);
55 return info;
  /hardware/interfaces/health/2.0/
IHealthInfoCallback.hal 26 * registered callbacks after health info changes.
27 * @param info the updated HealthInfo
29 oneway healthInfoChanged(HealthInfo info);

Completed in 808 milliseconds

1 2 3 4 5 67 8 91011>>