HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 226 - 250 of 2798) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/netem/
stats.c 20 struct stat info; local
27 fstat(fileno(fp), &info); local
28 if (info.st_size > 0) {
29 limit = 2*info.st_size/sizeof(double); /* @@ approximate */
  /external/iptables/extensions/
libxt_CONNSECMARK.c 38 struct xt_connsecmark_target_info *info = cb->data; local
43 info->mode = CONNSECMARK_SAVE;
46 info->mode = CONNSECMARK_RESTORE;
57 static void print_connsecmark(const struct xt_connsecmark_target_info *info)
59 switch (info->mode) {
69 xtables_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode);
77 const struct xt_connsecmark_target_info *info = local
81 print_connsecmark(info);
87 const struct xt_connsecmark_target_info *info = local
91 print_connsecmark(info);
    [all...]
libxt_IDLETIMER.c 60 struct idletimer_tg_info *info = local
63 printf(" timeout:%u", info->timeout);
64 printf(" label:%s", info->label);
65 printf(" send_nl_msg:%u", info->send_nl_msg);
71 struct idletimer_tg_info *info = local
74 printf(" --timeout %u", info->timeout);
75 printf(" --label %s", info->label);
76 printf(" --send_nl_msg %u", info->send_nl_msg);
libxt_NFLOG.c 43 struct xt_nflog_info *info = (struct xt_nflog_info *)t->data; local
45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
60 static void nflog_print(const struct xt_nflog_info *info, char *prefix)
62 if (info->prefix[0] != '\0') {
64 xtables_save_string(info->prefix);
66 if (info->group)
67 printf(" %snflog-group %u", prefix, info->group);
68 if (info->len)
69 printf(" %snflog-range %u", prefix, info->len);
70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD
77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
    [all...]
libxt_SECMARK.c 34 struct xt_secmark_target_info *info = cb->data; local
37 info->mode = SECMARK_MODE_SEL;
40 static void print_secmark(const struct xt_secmark_target_info *info)
42 switch (info->mode) {
44 printf("selctx %s", info->secctx);
48 xtables_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode);
55 const struct xt_secmark_target_info *info = local
59 print_secmark(info);
64 const struct xt_secmark_target_info *info = local
68 print_secmark(info);
    [all...]
libxt_TEE.c 54 const struct xt_tee_tginfo *info = (const void *)target->data; local
57 printf(" TEE gw:%s", xtables_ipaddr_to_numeric(&info->gw.in));
59 printf(" TEE gw:%s", xtables_ipaddr_to_anyname(&info->gw.in));
60 if (*info->oif != '\0')
61 printf(" oif=%s", info->oif);
67 const struct xt_tee_tginfo *info = (const void *)target->data; local
70 printf(" TEE gw:%s", xtables_ip6addr_to_numeric(&info->gw.in6));
72 printf(" TEE gw:%s", xtables_ip6addr_to_anyname(&info->gw.in6));
73 if (*info->oif != '\0')
74 printf(" oif=%s", info->oif)
79 const struct xt_tee_tginfo *info = (const void *)target->data; local
88 const struct xt_tee_tginfo *info = (const void *)target->data; local
    [all...]
libxt_mac.c 52 const struct xt_mac_info *info = (void *)match->data; local
55 if (info->invert)
58 print_mac(info->srcaddr);
63 const struct xt_mac_info *info = (void *)match->data; local
65 if (info->invert)
69 print_mac(info->srcaddr);
libxt_osf.c 66 struct xt_osf_info *info = cb->data; local
72 info->flags |= XT_OSF_INVERT;
73 info->len = strlen(info->genre);
76 info->flags |= XT_OSF_TTL;
79 info->flags |= XT_OSF_LOG;
86 const struct xt_osf_info *info = (const struct xt_osf_info*) match->data; local
88 printf(" OS fingerprint match %s%s", (info->flags & XT_OSF_INVERT) ? "! " : "", info->genre);
93 const struct xt_osf_info *info = (const struct xt_osf_info*) match->data local
    [all...]
libxt_physdev.c 41 struct xt_physdev_info *info = cb->data; local
46 xtables_parse_interface(cb->arg, info->physindev,
47 (unsigned char *)info->in_mask);
49 info->invert |= XT_PHYSDEV_OP_IN;
50 info->bitmask |= XT_PHYSDEV_OP_IN;
53 xtables_parse_interface(cb->arg, info->physoutdev,
54 (unsigned char *)info->out_mask);
56 info->invert |= XT_PHYSDEV_OP_OUT;
57 info->bitmask |= XT_PHYSDEV_OP_OUT;
60 info->bitmask |= XT_PHYSDEV_OP_ISIN
86 const struct xt_physdev_info *info = (const void *)match->data; local
109 const struct xt_physdev_info *info = (const void *)match->data; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_action.h 83 const struct tgsi_opcode_info * info; member in struct:lp_build_emit_data
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_info.c 244 const struct tgsi_opcode_info *info = tgsi_get_opcode_info(opcode); local
245 return info->mnemonic;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 59 const struct rc_opcode_info *info = rc_get_opcode_info(inst->Opcode); local
71 if (!info->IsComponentwise) {
75 for (i = 0; i < info->NumSrcRegs; i++) {
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.h 41 const struct tgsi_shader_info * info; member in struct:tgsi_to_rc
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallInfo.java 50 protected GenericURI info; field in class:CallInfo
69 info.encode(buffer);
93 return info;
111 * @param info is the URI to set.
113 public void setInfo(javax.sip.address.URI info) {
114 this.info = (GenericURI) info;
119 if (this.info != null)
120 retval.info = (GenericURI) this.info.clone()
    [all...]
  /external/openssh/
auth-chall.c 48 char *challenge, *name, *info, **prompts; local
62 if (device->query(authctxt->kbdintctxt, &name, &info,
76 xfree(info);
83 char *resp[1], *name, *info, **prompts; local
97 if ((device->query(authctxt->kbdintctxt, &name, &info,
109 xfree(info);
  /external/proguard/src/proguard/classfile/attribute/
LineNumberTableAttribute.java 67 LineNumberInfo info = lineNumberTable[index]; local
68 if (pc >= info.u2startPC)
70 return info.u2lineNumber;
  /external/proguard/src/proguard/optimize/info/
VariableUsageMarker.java 21 package proguard.optimize.info;
  /external/qemu/hw/
goldfish_memlog.c 31 unsigned info[8]; variable
42 info[offset / 4] = val;
46 snprintf(buf, sizeof buf, "%08x %08x\n", info[0], info[1]);
  /external/skia/bench/
DeferredSurfaceCopyBench.cpp 38 SkImage::Info info; variable
39 info.fWidth = kSurfaceWidth;
40 info.fHeight = kSurfaceHeight;
41 info.fColorType = SkImage::kPMColor_ColorType;
42 info.fAlphaType = SkImage::kPremul_AlphaType;
50 surface = SkSurface::NewRenderTarget(rt->getContext(), info, rt->numSamples());
54 surface = SkSurface::NewRaster(info);
  /external/skia/gm/
fatpathfill.cpp 19 SkImage::Info info = { local
25 return SkSurface::NewRaster(info);
  /external/skia/src/image/
SkImagePriv.cpp 12 SkBitmap::Config SkImageInfoToBitmapConfig(const SkImage::Info& info,
14 switch (info.fColorType) {
16 switch (info.fAlphaType) {
43 switch (info.fAlphaType) {
74 bool SkBitmapToImageInfo(const SkBitmap& bm, SkImage::Info* info) {
77 info->fColorType = SkImage::kAlpha_8_ColorType;
81 info->fColorType = SkImage::kRGB_565_ColorType;
85 info->fColorType = SkImage::kPMColor_ColorType
100 SkImage::Info info; local
    [all...]
SkSurface_Picture.cpp 23 virtual SkSurface* onNewSurface(const SkImage::Info&) SK_OVERRIDE;
54 SkSurface* SkSurface_Picture::onNewSurface(const SkImage::Info& info) {
55 return SkSurface::NewPicture(info.fWidth, info.fHeight);
62 SkImage::Info info; local
63 info.fWidth = info.fHeight = 0;
64 info.fColorType = SkImage::kPMColor_ColorType
    [all...]
  /external/skia/src/lazy/
SkBitmapFactory.cpp 51 SkImage::Info info; local
52 if (!fDecodeProc(data->data(), data->size(), &info, NULL)) {
57 SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
62 target.fRowBytes = SkImageMinRowBytes(info);
64 dst->setConfig(config, info.fWidth, info.fHeight, target.fRowBytes);
70 SkImageCache* cache = NULL == fCacheSelector ? fImageCache : fCacheSelector->selectCache(info);
81 return fDecodeProc(data->data(), data->size(), &info, &target);
SkLazyPixelRef.cpp 54 static size_t ComputeMinRowBytesAndSize(const SkImage::Info& info, size_t* rowBytes) {
55 *rowBytes = SkImageMinRowBytes(info);
59 if (info.fHeight > 0) {
60 safeSize.setMul(info.fHeight, SkToS32(*rowBytes));
94 SkImage::Info info; local
99 fErrorInDecoding = !fDecodeProc(fData->data(), fData->size(), &info, NULL);
107 size_t bytes = ComputeMinRowBytesAndSize(info, &target.fRowBytes);
124 fErrorInDecoding = !fDecodeProc(fData->data(), fData->size(), &info, &target)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
SharedGroupManager.java 51 SharedGroupsInfo info = new SharedGroupsInfo(); local
52 info.setType(IQ.Type.GET);
56 connection.createPacketCollector(new PacketIDFilter(info.getPacketID()));
58 connection.sendPacket(info);

Completed in 5196 milliseconds

1 2 3 4 5 6 7 8 91011>>