HomeSort by relevance Sort by last modified time
    Searched full:info (Results 176 - 200 of 40308) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/iptables/extensions/
libxt_owner.c 139 struct ipt_owner_info *info = cb->data; local
152 info->invert |= IPT_OWNER_UID;
153 info->match |= IPT_OWNER_UID;
154 info->uid = id;
162 info->invert |= IPT_OWNER_GID;
163 info->match |= IPT_OWNER_GID;
164 info->gid = id;
168 info->invert |= IPT_OWNER_PID;
169 info->match |= IPT_OWNER_PID;
173 info->invert |= IPT_OWNER_SID
186 struct ip6t_owner_info *info = cb->data; local
244 struct xt_owner_match_info *info = cb->data; local
432 const struct ipt_owner_info *info = (void *)match->data; local
445 const struct ip6t_owner_info *info = (void *)match->data; local
456 const struct xt_owner_match_info *info = (void *)match->data; local
466 const struct ipt_owner_info *info = (void *)match->data; local
478 const struct ip6t_owner_info *info = (void *)match->data; local
488 const struct xt_owner_match_info *info = (void *)match->data; local
528 const struct xt_owner_match_info *info = (void *)params->match->data; local
    [all...]
libebt_mark_m.c 35 struct ebt_mark_m_info *info = (struct ebt_mark_m_info *)match->data; local
37 info->mark = 0;
38 info->mask = 0;
39 info->invert = 0;
40 info->bitmask = 0;
48 struct ebt_mark_m_info *info = (struct ebt_mark_m_info *) local
55 info->invert = 1;
56 info->mark = strtoul(optarg, &end, 0);
57 info->bitmask = EBT_MARK_AND;
60 info->bitmask = EBT_MARK_OR
87 struct ebt_mark_m_info *info = (struct ebt_mark_m_info *)match->data; local
    [all...]
libxt_HMARK.c 143 hmark_parse(const char *type, size_t len, struct xt_hmark_info *info,
147 info->flags |= XT_HMARK_FLAG(XT_HMARK_CT);
150 memset(&info->src_mask, 0xff, sizeof(info->src_mask));
151 info->flags |= XT_HMARK_FLAG(XT_HMARK_SADDR_MASK);
154 memset(&info->dst_mask, 0xff, sizeof(info->dst_mask));
155 info->flags |= XT_HMARK_FLAG(XT_HMARK_DADDR_MASK);
158 memset(&info->port_mask.p16.src, 0xff,
159 sizeof(info->port_mask.p16.src))
185 struct xt_hmark_info *info = cb->data; local
206 struct xt_hmark_info *info = cb->data; local
313 const struct xt_hmark_info *info = local
334 const struct xt_hmark_info *info = local
386 const struct xt_hmark_info *info = local
403 const struct xt_hmark_info *info = local
    [all...]
libxt_mark.c 30 struct xt_mark_mtinfo1 *info = cb->data; local
34 info->invert = true;
35 info->mark = cb->val.mark;
36 info->mask = cb->val.mask;
61 const struct xt_mark_mtinfo1 *info = (const void *)match->data; local
64 if (info->invert)
66 print_mark(info->mark, info->mask);
72 const struct xt_mark_info *info = (const void *)match->data; local
76 if (info->invert
84 const struct xt_mark_mtinfo1 *info = (const void *)match->data; local
96 const struct xt_mark_info *info = (const void *)match->data; local
120 const struct xt_mark_mtinfo1 *info = (const void *)params->match->data; local
135 const struct xt_mark_info *info = (const void *)params->match->data; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
ItemInfoMatcher.java 37 public abstract boolean matches(ItemInfo info, ComponentName cn);
46 ShortcutInfo info = (ShortcutInfo) i; local
47 ComponentName cn = info.getTargetComponent();
48 if (cn != null && matches(info, cn)) {
49 filtered.add(info);
52 FolderInfo info = (FolderInfo) i; local
53 for (ShortcutInfo s : info.contents) {
60 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) i; local
61 ComponentName cn = info.providerName;
62 if (cn != null && matches(info, cn))
    [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...]
d30v-dis.c 118 print_insn (struct disassemble_info *info,
129 (*info->fprintf_func) (info->stream, "%s", insn->op->name);
139 (*info->fprintf_func) (info->stream, "%s", d30v_cc_names[val]);
146 (*info->fprintf_func) (info->stream, ".l");
148 (*info->fprintf_func) (info->stream, ".s");
152 (*info->fprintf_func) (info->stream, "/%s", d30v_ecc_names[insn->ecc])
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_blit.c 51 vc4_tile_blit(struct pipe_context *pctx, const struct pipe_blit_info *info)
54 bool msaa = (info->src.resource->nr_samples > 1 ||
55 info->dst.resource->nr_samples > 1);
59 if (util_format_is_depth_or_stencil(info->dst.resource->format))
62 if (info->scissor_enable)
65 if ((info->mask & PIPE_MASK_RGBA) == 0)
68 if (info->dst.box.x != info->src.box.x ||
69 info->dst.box.y != info->src.box.y |
210 struct pipe_blit_info info = *blit_info; local
    [all...]
  /external/skia/tests/
AsADashTest.cpp 18 SkPathEffect::DashInfo info; local
20 SkPathEffect::DashType dashType = pe->asADash(&info);
40 SkPathEffect::DashInfo info; local
42 SkPathEffect::DashType dashType = pe->asADash(&info);
44 REPORTER_ASSERT(reporter, 4 == info.fCount);
45 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
48 SkAutoTArray<SkScalar> intervals(info.fCount);
49 info.fIntervals = intervals.get();
50 pe->asADash(&info);
51 REPORTER_ASSERT(reporter, inIntervals[0] == info.fIntervals[0])
    [all...]
  /external/skqp/tests/
AsADashTest.cpp 16 SkPathEffect::DashInfo info; local
18 SkPathEffect::DashType dashType = pe->asADash(&info);
38 SkPathEffect::DashInfo info; local
40 SkPathEffect::DashType dashType = pe->asADash(&info);
42 REPORTER_ASSERT(reporter, 4 == info.fCount);
43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
46 SkAutoTArray<SkScalar> intervals(info.fCount);
47 info.fIntervals = intervals.get();
48 pe->asADash(&info);
49 REPORTER_ASSERT(reporter, inIntervals[0] == info.fIntervals[0])
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_driver_query.c 216 query_new_value_batch(struct query_info *info)
218 struct hud_batch_query_context *bq = info->batch;
219 unsigned result_index = info->result_index;
224 info->results_cumulative += bq->result[idx]->batch[result_index].u64;
225 ++info->num_results;
233 query_new_value_normal(struct query_info *info)
235 struct pipe_context *pipe = info->pipe;
237 if (info->last_time) {
238 if (info->query[info->head]
292 struct query_info *info = gr->query_data; local
303 struct query_info *info = gr->query_data; local
341 struct query_info *info = ptr; local
368 struct query_info *info; local
    [all...]
  /external/v8/src/inspector/
v8-injected-script-host.cc 37 const v8::FunctionCallbackInfo<v8::Value>& info) {
38 DCHECK(!info.Data().IsEmpty());
39 DCHECK(info.Data()->IsExternal());
41 static_cast<V8InspectorImpl*>(info.Data().As<v8::External>()->Value());
84 const v8::FunctionCallbackInfo<v8::Value>& info) {
85 CHECK(info.Length() == 1 && info[0]->IsObject());
86 v8::Isolate* isolate = info.GetIsolate();
87 info[0]
94 const v8::FunctionCallbackInfo<v8::Value>& info) {
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
tri-large.c 11 static struct graw_info info; variable in typeref:struct:graw_info
55 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
56 info.ctx->bind_vertex_elements_state(info.ctx, handle);
62 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
68 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
85 handle = graw_parse_vertex_shader(info.ctx, text);
86 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
tri.c 8 static struct graw_info info; variable in typeref:struct:graw_info
52 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
53 info.ctx->bind_vertex_elements_state(info.ctx, handle);
59 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
65 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
82 handle = graw_parse_vertex_shader(info.ctx, text);
83 info.ctx->bind_vs_state(info.ctx, handle)
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
compat.c 99 siText(SymInterpInfo *si, CompatInfo *info)
101 char *buf = xkb_context_get_buffer(info->ctx, 128);
103 if (si == &info->default_interp)
107 KeysymText(info->ctx, si->interp.sym),
109 ModMaskText(info->ctx, &info->mods, si->interp.mods));
115 ReportSINotArray(CompatInfo *info, SymInterpInfo *si, const char *field)
117 return ReportNotArray(info->ctx, "symbol interpretation", field,
118 siText(si, info));
122 ReportSIBadType(CompatInfo *info, SymInterpInfo *si, const char *field
906 CompatInfo info; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.c 106 scan_src_operand(struct tgsi_shader_info *info,
119 for (ind = 0; ind < info->num_inputs; ++ind) {
120 info->input_usage_mask[ind] |= usage_mask;
125 info->input_usage_mask[ind] |= usage_mask;
128 if (info->processor == PIPE_SHADER_FRAGMENT) {
132 input = info->input_array_first[src->Indirect.ArrayID];
136 name = info->input_semantic_name[input];
137 index = info->input_semantic_index[input];
144 info->reads_z = TRUE;
153 info->colors_read |= mask << (index * 4)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
vertexshader9.c 41 struct nine_shader_info info; local
60 info.type = PIPE_SHADER_VERTEX;
61 info.byte_code = pFunction;
62 info.const_i_base = NINE_CONST_I_BASE(device->max_vs_const_f) / 16;
63 info.const_b_base = NINE_CONST_B_BASE(device->max_vs_const_f) / 16;
64 info.sampler_mask_shadow = 0x0;
65 info.sampler_ps1xtypes = 0x0;
66 info.fog_enable = 0;
67 info.point_size_min = 0;
68 info.point_size_max = 0
187 struct nine_shader_info info; local
219 struct nine_shader_info info; local
    [all...]
  /external/valgrind/none/tests/x86/
badseg.c 5 static void handler(int sig, siginfo_t *info, void *v)
7 printf("info: sig=%d code=%d addr=0x%lx\n",
8 info->si_signo, info->si_code, (unsigned long)info->si_addr);
  /system/core/libmemunreachable/tests/
MemUnreachable_test.cpp 82 UnreachableMemoryInfo info; local
86 ASSERT_TRUE(GetUnreachableMemory(info));
87 ASSERT_EQ(0U, info.leaks.size());
97 UnreachableMemoryInfo info; local
99 ASSERT_TRUE(GetUnreachableMemory(info));
100 ASSERT_EQ(0U, info.leaks.size());
106 UnreachableMemoryInfo info; local
108 ASSERT_TRUE(GetUnreachableMemory(info));
109 ASSERT_EQ(1U, info.leaks.size());
115 UnreachableMemoryInfo info; local
130 UnreachableMemoryInfo info; local
139 UnreachableMemoryInfo info; local
148 UnreachableMemoryInfo info; local
163 UnreachableMemoryInfo info; local
172 UnreachableMemoryInfo info; local
181 UnreachableMemoryInfo info; local
197 UnreachableMemoryInfo info; local
206 UnreachableMemoryInfo info; local
213 UnreachableMemoryInfo info; local
222 UnreachableMemoryInfo info; local
237 UnreachableMemoryInfo info; local
    [all...]
  /external/webrtc/talk/session/media/
currentspeakermonitor_unittest.cc 63 void SignalAudioMonitor(const AudioInfo& info) {
64 source_.SignalAudioMonitor(&source_, info);
79 static void InitAudioInfo(AudioInfo* info, int input_level, int output_level) {
80 info->input_level = input_level;
81 info->output_level = output_level;
85 AudioInfo info; local
86 InitAudioInfo(&info, 0, 0);
87 SignalAudioMonitor(info);
94 AudioInfo info; local
95 InitAudioInfo(&info, 0, 0)
116 AudioInfo info; local
143 AudioInfo info; local
172 AudioInfo info; local
    [all...]
  /external/toolchain-utils/crosperf/test_cache/test_input/
results.txt 1 S"11:22:08 INFO | Running autotest_quickmerge step.\n11:22:08 INFO | quickmerge| 11:22:08: INFO: RunCommand: sudo -- /usr/bin/python2.7 /mnt/host/source/chromite/bin/autotest_quickmerge '--board=lumpy'\n11:22:08 INFO | quickmerge| 11:22:08: INFO: RunCommand: find /build/lumpy/usr/local/build/autotest/ -path /build/lumpy/usr/local/build/autotest/ExternalSource -prune -o -path /build/lumpy/usr/local/build/autotest/logs -prune -o -path /build/lumpy/usr/local/build/autotest/results -prune -o -path /build/lumpy/usr/local/build/autotest/site-packages -prune -o -printf '%T@\\n'\n11:22:22 INFO | quickmerge| 11:22:22: INFO: RunCommand: find /mnt/host/source/src/third_party/autotest/files/ -path /mnt/host/source/src/third_party/autotest/files/ExternalSource -prune -o -path /mnt/host/source/src/third_party/autotest/files/logs -prune -o -path /mnt/host/source/src/third_party/autotest/files/results -prune -o -path /mnt/host/source/src/third_party/autotest/files/site-packages -prune -o -printf '%T@\\n'\n11:22:32 INFO | quickmerge| 11:22:32: INFO: The sysroot appears to be newer than the source tree, doing nothing and exiting now.\n11:22:32 INFO | Re-running test_that script in /build/lumpy/usr/local/build/autotest copy of autotest.\n11:22:33 (…)
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvTrackInfoTest.java 34 final TvTrackInfo info = new TvTrackInfo.Builder(TvTrackInfo.TYPE_AUDIO, "id_audio") local
40 assertEquals(TvTrackInfo.TYPE_AUDIO, info.getType());
41 assertEquals("id_audio", info.getId());
42 assertEquals(2, info.getAudioChannelCount());
43 assertEquals(48000, info.getAudioSampleRate());
44 assertEquals("eng", info.getLanguage());
45 assertEquals(bundle.get("testTrue"), info.getExtra().get("testTrue"));
46 assertEquals(0, info.describeContents());
50 info.writeToParcel(p, 0);
69 final TvTrackInfo info = new TvTrackInfo.Builder(TvTrackInfo.TYPE_VIDEO, "id_video" local
113 final TvTrackInfo info = new TvTrackInfo.Builder(TvTrackInfo.TYPE_SUBTITLE, "id_subtitle") local
    [all...]
  /external/selinux/libsemanage/src/
ports_file.c 62 parse_info_t * info, semanage_port_t * port)
69 if (parse_skip_space(handle, info) < 0)
71 if (!info->ptr)
75 if (parse_assert_str(handle, info, "portcon") < 0)
77 if (parse_assert_space(handle, info) < 0)
81 if (parse_fetch_string(handle, info, &str, ' ') < 0)
89 info->filename, info->lineno, info->orig_line);
96 if (parse_assert_space(handle, info) < 0
    [all...]
  /external/skqp/src/core/
SkImageInfoPriv.h 17 static inline bool SkImageInfoIsValidCommon(const SkImageInfo& info) {
18 if (info.width() <= 0 || info.height() <= 0) {
23 if (info.width() > kMaxDimension || info.height() > kMaxDimension) {
27 if (kUnknown_SkColorType == info.colorType() || kUnknown_SkAlphaType == info.alphaType()) {
31 if (kOpaque_SkAlphaType != info.alphaType() &&
32 (kRGB_565_SkColorType == info.colorType() || kGray_8_SkColorType == info.colorType()))
    [all...]
  /external/swiftshader/third_party/subzero/docs/
Makefile.standalone 12 $(info Warning: ......................................)
13 $(info To get best Doxygen output for Python code, the)
14 $(info Python doxypypy package should be installed, e.g.)
15 $(info 'sudo pip install doxypypy')
16 $(info ... or ... )
17 $(info 'easy_install doxypypy')
18 $(info see https://github.com/Feneric/doxypypy)

Completed in 995 milliseconds

1 2 3 4 5 6 78 91011>>