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

12 3 4 5 6 7 8 91011>>

  /external/strace/
print_sg_req_info.c 49 struct_sg_req_info info; local
55 if (!umove_or_printaddr(tcp, arg, &info)) {
62 info.req_state,
63 info.orphan,
64 info.sg_io_owned,
65 info.problem,
66 info.pack_id);
67 printaddr(ptr_to_kulong(info.usr_ptr));
68 tprintf(", duration=%u}", info.duration);
  /packages/apps/Settings/src/com/android/settings/datausage/
DataUsageInfoController.java 27 public void updateDataLimit(DataUsageInfo info, NetworkPolicy policy) {
28 if (info == null || policy == null) {
32 info.warningLevel = policy.warningBytes;
35 info.limitLevel = policy.limitBytes;
44 public long getSummaryLimit(DataUsageInfo info) {
45 long limit = info.limitLevel;
47 limit = info.warningLevel;
49 if (info.usageLevel > limit) {
50 limit = info.usageLevel;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_header.cpp 39 mp3Header *info,
43 mp3Header *info, structure holding the parsed mp3 header info
116 mp3Header *info,
153 info->version_x = MPEG_2_5;
156 info->version_x = MPEG_2;
159 info->version_x = MPEG_1;
162 info->version_x = INVALID_VERSION;
167 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
168 info->error_protection = !((temp << 15) >> 31); /* 1 *
    [all...]
  /external/iptables/extensions/
libxt_length.c 25 struct xt_length_info *info = cb->data; local
28 info->min = cb->val.u16_range[0];
29 info->max = cb->val.u16_range[0];
31 info->max = cb->val.u16_range[1];
33 info->invert = 1;
39 const struct xt_length_info *info = (void *)match->data; local
41 printf(" length %s", info->invert ? "!" : "");
42 if (info->min == info->max)
43 printf("%u", info->min)
50 const struct xt_length_info *info = (void *)match->data; local
62 const struct xt_length_info *info = (void *)params->match->data; local
    [all...]
  /external/mesa3d/src/intel/isl/
isl_gen8.c 29 const struct isl_surf_init_info *info,
36 assert(info->samples >= 1);
38 if (info->samples == 1) {
49 if (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT)
63 if (info->dim != ISL_SURF_DIM_2D)
65 if (info->levels > 1)
69 if (isl_surf_usage_is_display(info->usage))
71 if (!isl_format_supports_multisampling(dev->info, info->format))
74 if (isl_surf_usage_is_depth_or_stencil(info->usage) |
    [all...]
isl_gen7.c 29 const struct isl_surf_init_info *info,
37 assert(info->samples >= 1);
39 if (info->samples == 1) {
44 if (!isl_format_supports_multisampling(dev->info, info->format))
56 if (info->dim != ISL_SURF_DIM_2D)
58 if (info->levels > 1)
80 if (isl_format_has_sint_channel(info->format))
84 if (isl_surf_usage_is_display(info->usage))
100 if (isl_surf_usage_is_depth_or_stencil(info->usage) |
    [all...]
  /external/libxcam/xcore/
v4l2_buffer_proxy.cpp 61 VideoBufferInfo info; local
64 v4l2_format_to_video_info (buf->get_format(), info);
65 set_video_info (info);
80 const struct v4l2_format &format, VideoBufferInfo &info)
82 info.format = format.fmt.pix.pixelformat;
83 info.color_bits = 8;
84 info.width = format.fmt.pix.width;
85 info.height = format.fmt.pix.height;
86 info.aligned_width = 0;
87 info.aligned_height = 0
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
occlusion-query.c 17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info)
121 handle = graw_parse_vertex_shader(info->ctx, text)
    [all...]
  /external/skia/src/core/
SkImageInfoPriv.h 58 static inline bool SkImageInfoIsValidCommon(const SkImageInfo& info) {
59 if (info.width() <= 0 || info.height() <= 0) {
64 if (info.width() > kMaxDimension || info.height() > kMaxDimension) {
68 if (kUnknown_SkColorType == info.colorType() || kUnknown_SkAlphaType == info.alphaType()) {
72 if (kOpaque_SkAlphaType != info.alphaType() &&
73 (kRGB_565_SkColorType == info.colorType() || kGray_8_SkColorType == info.colorType()))
    [all...]
  /external/strace/tests/
rt_tgsigqueueinfo.c 43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info)
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info->si_uid = getuid()
    [all...]
  /external/strace/tests-m32/
rt_tgsigqueueinfo.c 43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info)
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info->si_uid = getuid()
    [all...]
  /external/strace/tests-mx32/
rt_tgsigqueueinfo.c 43 k_tgsigqueueinfo(const pid_t pid, const int sig, const void *const info)
49 info);
61 TAIL_ALLOC_OBJECT_CONST_PTR(siginfo_t, info);
62 memset(info, 0, sizeof(*info));
63 info->si_signo = SIGUSR1;
64 info->si_errno = ENOENT;
65 info->si_code = SI_QUEUE;
66 info->si_pid = getpid();
67 info->si_uid = getuid()
    [all...]
  /build/kati/testcase/
and.mk 7 $(and ${TRUE}, $(info PASS_1))
8 $(and ${FALSE}, $(info FAIL_2))
10 $(info $(and ${TRUE}, PASS, PASS))
12 $(info $(and ${TRUE}, $(X) ))
13 $(info $(and ${TRUE}, $(Y) ))
14 $(and ${FALSE} , $(info FAIL_3))
shell_var.mk 1 $(info $(SHELL))
5 $(info $(shell foo))
10 $(info $(shell bar))
escaped_backslash.mk 9 $(info echo $(no_comment))
10 $(info echo $(two_backslash))
11 $(info echo \\)
12 $(info echo \\ foo)
if.mk 4 $(if ${TRUE}, $(info PASS1))
5 $(if ${FALSE}, $(info FAIL1))
6 $(if ${TRUE}, $(info PASS2), $(info FAIL2))
7 $(if ${FALSE}, $(info FAIL3), $(info PASS3))
8 $(info $(if ${TRUE}, PASS4, FAIL4))
10 $(info $(if ${FALSE}, FAIL5, PASS5, PASS6))
11 $(info $(if ${FALSE} , FAIL6, PASS7))
ifdef_ret_in_arg.mk 7 $(info $($(x)))
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
LabelInfo.java 17 * Data container that is attached to {@link Label#info} objects to store flow
55 final LabelInfo info = create(label); local
56 if (info.target || info.successor) {
57 info.multiTarget = true;
59 info.target = true;
71 final LabelInfo info = create(label); local
72 info.successor = true;
73 if (info.target) {
74 info.multiTarget = true
90 final LabelInfo info = get(label); local
105 final LabelInfo info = get(label); local
129 final LabelInfo info = get(label); local
141 final LabelInfo info = get(label); local
163 final LabelInfo info = get(label); local
189 final LabelInfo info = get(label); local
214 final LabelInfo info = get(label); local
241 final LabelInfo info = get(label); local
267 final LabelInfo info = get(label); local
272 final Object info = label.info; local
277 LabelInfo info = get(label); local
    [all...]
  /external/libcxx/test/std/utilities/type.index/type.index.members/
ctor.pass.cpp 22 std::type_info const & info = typeid(int); member in class:std
23 std::type_index t1(info);
24 assert(t1.name() == info.name());
  /hardware/interfaces/radio/1.1/
IRadioResponse.hal 27 * @param info Response info struct containing response type, serial no. and error
37 oneway setCarrierInfoForImsiEncryptionResponse(RadioResponseInfo info);
40 * @param info Response info struct containing response type, serial no. and error
48 oneway setSimCardPowerResponse_1_1(RadioResponseInfo info);
51 * @param info Response info struct containing response type, serial no. and error
64 oneway startNetworkScanResponse(RadioResponseInfo info);
67 * @param info Response info struct containing response type, serial no. and erro
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.members/
ctor.pass.cpp 22 std::type_info const & info = typeid(int); member in class:std
23 std::type_index t1(info);
24 assert(t1.name() == info.name());
  /external/elfutils/tests/
run-unstrip-test3.sh 9 # gcc -o testfile-info-link -g testprog.c
10 # objcopy --only-keep-debug testfile-info-link testfile-info-link.debuginfo
11 # eu-strip --strip-debug -o testfile-info-link.stripped testfile-info-link
13 original=testfile-info-link
14 stripped=testfile-info-link.stripped
15 debugfile=testfile-info-link.debuginfo
  /external/harfbuzz_ng/src/
hb-ot-layout-private.hh 211 hb_glyph_info_t *info = buffer->info; local
214 unsigned int syllable = info[start].syllable();
215 while (++start < count && syllable == info[start].syllable())
254 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_buffer_t *buffer)
257 unsigned int u = info->codepoint;
303 props |= unicode->modified_combining_class (info->codepoint)<<8;
317 info->unicode_props() = props;
321 _hb_glyph_info_set_general_category (hb_glyph_info_t *info,
325 info->unicode_props() = (unsigned int) gen_cat | (info->unicode_props() & (0xFF & ~UPROPS_MASK_GEN_CAT) (…)
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
m10300-dis.c 27 #define HAVE_AM33_2 (info->mach == AM33_2)
28 #define HAVE_AM33 (info->mach == AM33 || HAVE_AM33_2)
29 #define HAVE_AM30 (info->mach == AM30)
33 struct disassemble_info *info,
115 status = (*info->read_memory_func) (memaddr + 1, buffer, 2, info);
118 (*info->memory_error_func) (status, memaddr, info);
139 status = (*info->read_memory_func) (memaddr + 2, buffer, 2, info);
497 (*info->print_address_func) ((long) value + memaddr, info); local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf32-rx.h 21 void rx_additional_link_map_text (bfd *obfd, struct bfd_link_info *info, FILE *mapfile);

Completed in 1045 milliseconds

12 3 4 5 6 7 8 91011>>