HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 326 - 350 of 2856) sorted by null

<<11121314151617181920>>

  /external/chromium_org/tools/gn/
standard_out.cc 37 CONSOLE_SCREEN_BUFFER_INFO info; local
38 is_console = !!::GetConsoleScreenBufferInfo(hstdout, &info);
39 default_attributes = info.wAttributes;
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_finder_unittest.py 14 def info(self, msg, *args): member in class:LoggingStub
  /external/chromium_org/ui/gfx/android/
java_bitmap.cc 27 AndroidBitmapInfo info; local
28 err = AndroidBitmap_getInfo(AttachCurrentThread(), bitmap_, &info);
30 size_ = gfx::Size(info.width, info.height);
31 format_ = info.format;
32 stride_ = info.stride;
  /external/chromium_org/v8/src/
cpu.cc 458 SYSTEM_INFO info; local
459 GetSystemInfo(&info);
460 return info.dwNumberOfProcessors;
  /external/chromium_org/webkit/browser/appcache/
appcache_storage.cc 71 scoped_refptr<AppCacheResponseInfo> info; local
73 info = new AppCacheResponseInfo(storage_, manifest_url_,
78 FOR_EACH_DELEGATE(delegates_, OnResponseInfoLoaded(info.get(), response_id_));
84 AppCacheResponseInfo* info = working_set_.GetResponseInfo(id); local
85 if (info) {
86 delegate->OnResponseInfoLoaded(info, id);
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 59 static ReportStack *NewReportStackEntry(const AddressInfo &info) {
60 ReportStack *ent = NewReportStackEntry(info.address);
61 ent->module = StripModuleName(info.module);
62 ent->offset = info.module_offset;
63 if (info.function)
64 ent->func = internal_strdup(info.function);
65 if (info.file)
66 ent->file = internal_strdup(info.file);
67 ent->line = info.line;
68 ent->col = info.column
103 DataInfo info; local
    [all...]
  /external/e2fsprogs/lib/ss/
execute_cmd.c 77 * ss-internal index for subsystem control info structure
95 register ss_data *info; local
100 info = ss_info(sci_idx);
101 info->argc = argc;
102 info->argv = argv;
106 info->current_request = request->command_names[0];
108 sci_idx,info->info_ptr);
109 info->current_request = (char *)NULL;
124 * ss-internal index for subsystem control info structure
143 register ss_data *info; local
    [all...]
help.c 49 register ss_data *info; local
74 info = ss_info(sci_idx);
75 if (info->info_dirs == (char **)NULL) {
79 if (info->info_dirs[0] == (char *)NULL) {
83 for (fd = -1, idx = 0; info->info_dirs[idx] != (char *)NULL; idx++) {
84 buffer = malloc(strlen (info->info_dirs[idx]) + 1 +
91 (void) strcpy(buffer, info->info_dirs[idx]);
94 (void) strcat(buffer, ".info");
101 #define MSG "No info found for "
135 register ss_data *info; local
    [all...]
  /external/eigen/blas/
level3_impl.h 41 int info = 0; local
42 if(OP(*opa)==INVALID) info = 1;
43 else if(OP(*opb)==INVALID) info = 2;
44 else if(*m<0) info = 3;
45 else if(*n<0) info = 4;
46 else if(*k<0) info = 5;
47 else if(*lda<std::max(1,(OP(*opa)==NOTR)?*m:*k)) info = 8;
48 else if(*ldb<std::max(1,(OP(*opb)==NOTR)?*k:*n)) info = 10;
49 else if(*ldc<std::max(1,*m)) info = 13;
50 if(info)
118 int info = 0; local
202 int info = 0; local
247 int info = 0; local
333 int info = 0; local
387 int info = 0; local
454 int info = 0; local
526 int info = 0; local
572 int info = 0; local
    [all...]
  /external/harfbuzz_ng/src/
test.cc 112 hb_glyph_info_t *info = &infos[i]; local
116 info->cluster,
117 info->codepoint,
  /external/icu4c/common/
ucmndata.h 43 UDataInfo info; member in struct:__anon18740
66 * Get the UDataInfo.size from a const UDataInfo *info.
72 udata_getInfoSize(const UDataInfo *info);
  /external/iptables/extensions/
libip6t_HL.c 46 struct ip6t_HL_info *info = cb->data; local
51 info->mode = IP6T_HL_SET;
54 info->mode = IP6T_HL_INC;
57 info->mode = IP6T_HL_DEC;
71 const struct ip6t_HL_info *info = local
74 switch (info->mode) {
86 printf(" %u", info->hop_limit);
92 const struct ip6t_HL_info *info = local
96 switch (info->mode) {
107 printf(" %u", info->hop_limit)
    [all...]
libip6t_hl.c 33 struct ip6t_hl_info *info = cb->data; local
38 info->mode = cb->invert ? IP6T_HL_NE : IP6T_HL_EQ;
41 info->mode = IP6T_HL_LT;
44 info->mode = IP6T_HL_GT;
66 const struct ip6t_hl_info *info = local
69 printf(" HL match HL %s %u", op[info->mode], info->hop_limit);
80 const struct ip6t_hl_info *info = local
83 printf(" %s %u", op[info->mode], info->hop_limit)
    [all...]
libipt_TTL.c 45 struct ipt_TTL_info *info = cb->data; local
50 info->mode = IPT_TTL_SET;
53 info->mode = IPT_TTL_DEC;
56 info->mode = IPT_TTL_INC;
70 const struct ipt_TTL_info *info = local
73 switch (info->mode) {
85 printf(" %u", info->ttl);
91 const struct ipt_TTL_info *info = local
95 switch (info->mode) {
106 printf(" %u", info->ttl)
    [all...]
libipt_ttl.c 30 struct ipt_ttl_info *info = cb->data; local
35 info->mode = cb->invert ? IPT_TTL_NE : IPT_TTL_EQ;
38 info->mode = IPT_TTL_LT;
41 info->mode = IPT_TTL_GT;
57 const struct ipt_ttl_info *info = local
61 switch (info->mode) {
75 printf(" %u", info->ttl);
80 const struct ipt_ttl_info *info = local
83 switch (info->mode) {
100 printf(" %u", info->ttl)
    [all...]
libxt_cluster.c 54 struct xt_cluster_match_info *info = cb->data; local
60 info->flags |= XT_CLUSTER_F_INV;
61 info->node_mask = 1 << (cb->val.u32 - 1);
65 info->flags |= XT_CLUSTER_F_INV;
72 const struct xt_cluster_match_info *info = cb->data; local
77 if (info->node_mask >= (1ULL << info->total_nodes))
87 if (info->node_mask >= (1ULL << info->total_nodes))
103 const struct xt_cluster_match_info *info = (void *)match->data local
118 const struct xt_cluster_match_info *info = (void *)match->data; local
    [all...]
libxt_connmark.c 52 struct xt_connmark_mtinfo1 *info = cb->data; local
56 info->invert = true;
57 info->mark = cb->val.mark;
58 info->mask = cb->val.mask;
83 const struct xt_connmark_info *info = (const void *)match->data; local
86 if (info->invert)
88 print_mark(info->mark, info->mask);
94 const struct xt_connmark_mtinfo1 *info = (const void *)match->data; local
97 if (info->invert
104 const struct xt_connmark_info *info = (const void *)match->data; local
116 const struct xt_connmark_mtinfo1 *info = (const void *)match->data; local
    [all...]
libxt_devgroup.c 47 struct xt_devgroup_info *info = cb->data; local
54 info->src_group = strtoul(cb->arg, &end, 0);
57 info->src_mask = strtoul(end+1, &end, 0);
59 info->src_mask = 0xffffffff;
70 info->src_group = id;
71 info->src_mask = 0xffffffff;
73 info->flags |= XT_DEVGROUP_MATCH_SRC;
75 info->flags |= XT_DEVGROUP_INVERT_SRC;
78 info->dst_group = strtoul(cb->arg, &end, 0);
81 info->dst_mask = strtoul(end+1, &end, 0)
142 const struct xt_devgroup_info *info = (const void *)match->data; local
149 const struct xt_devgroup_info *info = (const void *)match->data; 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
    [all...]
libxt_pkttype.c 63 static void parse_pkttype(const char *pkttype, struct xt_pkttype_info *info)
70 info->pkttype=supported_types[i].pkttype;
79 struct xt_pkttype_info *info = cb->data; local
82 parse_pkttype(cb->arg, info);
84 info->invert = 1;
87 static void print_pkttype(const struct xt_pkttype_info *info)
92 if(supported_types[i].pkttype==info->pkttype)
98 printf("%d", info->pkttype); /* in case we didn't find an entry in named-packtes */
104 const struct xt_pkttype_info *info = (const void *)match->data; local
106 printf(" PKTTYPE %s= ", info->invert ? "!" : "")
112 const struct xt_pkttype_info *info = (const void *)match->data; local
    [all...]
libxt_quota2.c 62 struct xt_quota_mtinfo2 *info = cb->data; local
67 info->flags |= XT_QUOTA_GROW;
70 info->flags |= XT_QUOTA_NO_CHANGE;
75 info->flags |= XT_QUOTA_PACKET;
79 info->flags |= XT_QUOTA_INVERT;
libxt_set.c 57 struct xt_set_info_v0 *info = &myinfo->match_set; local
64 if (info->u.flags[0])
70 info->u.flags[0] |= IPSET_MATCH_INV;
83 get_set_byname(optarg, (struct xt_set_info *)info);
84 parse_dirs_v0(argv[optind], info);
85 DEBUGP("parse: set index %u\n", info->index);
96 print_match_v0(const char *prefix, const struct xt_set_info_v0 *info)
101 get_set_byid(setname, info->index);
103 (info->u.flags[0] & IPSET_MATCH_INV) ? " !" : "",
107 if (!info->u.flags[i]
119 const struct xt_set_info_match_v0 *info = (const void *)match->data; local
127 const struct xt_set_info_match_v0 *info = (const void *)match->data; local
144 struct xt_set_info *info = &myinfo->match_set; local
204 const struct xt_set_info_match_v1 *info = (const void *)match->data; local
212 const struct xt_set_info_match_v1 *info = (const void *)match->data; local
    [all...]
libxt_statistic.c 48 struct xt_statistic_info *info = cb->data; local
51 info->flags |= XT_STATISTIC_INVERT;
57 info->mode = XT_STATISTIC_MODE_RANDOM;
59 info->mode = XT_STATISTIC_MODE_NTH;
65 info->u.random.probability = lround(0x80000000 * cb->val.dbl);
68 --info->u.nth.every;
75 struct xt_statistic_info *info = cb->data; local
77 if (info->mode == XT_STATISTIC_MODE_RANDOM &&
82 if (info->mode == XT_STATISTIC_MODE_NTH &&
88 /* at this point, info->u.nth.every have been decreased. *
119 const struct xt_statistic_info *info = (const void *)match->data; local
127 const struct xt_statistic_info *info = (const void *)match->data; local
    [all...]
libxt_tos.c 58 struct ipt_tos_info *info = cb->data; local
65 info->tos = cb->val.tos_value;
67 info->invert = true;
72 struct xt_tos_match_info *info = cb->data; local
75 info->tos_value = cb->val.tos_value;
76 info->tos_mask = cb->val.tos_mask;
78 info->invert = true;
84 const struct ipt_tos_info *info = (const void *)match->data; local
87 if (info->invert)
89 if (numeric || !tos_try_print_symbolic("", info->tos, 0x3F)
96 const struct xt_tos_match_info *info = (const void *)match->data; local
108 const struct ipt_tos_info *info = (const void *)match->data; local
117 const struct xt_tos_match_info *info = (const void *)match->data; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs.h 50 struct tgsi_shader_info info; member in struct:draw_geometry_shader

Completed in 602 milliseconds

<<11121314151617181920>>