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

<<51525354555657585960>>

  /external/ipsec-tools/
setup.c 98 struct addrinfo *info; local
100 if (getaddrinfo(server, "500", &hints, &info) != 0) {
104 if (info->ai_next) {
107 targets[0] = dupsaddr(info->ai_addr);
108 freeaddrinfo(info);
  /external/iptables/extensions/
libxt_CONNMARK.c 127 struct xt_connmark_tginfo1 *info = (void *)target->data; local
133 info->ctmask = UINT32_MAX;
134 info->nfmask = UINT32_MAX;
162 struct xt_connmark_tginfo1 *info = cb->data; local
167 info->mode = XT_CONNMARK_SET;
168 info->ctmark = cb->val.mark;
169 info->ctmask = cb->val.mask;
172 info->mode = XT_CONNMARK_SET;
173 info->ctmark = cb->val.mark;
174 info->ctmask = cb->val.mark | cb->val.mask
252 const struct xt_connmark_tginfo1 *info = (const void *)target->data; local
330 const struct xt_connmark_tginfo1 *info = (const void *)target->data; local
    [all...]
libxt_hashlimit.c 8 * Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr>
191 struct xt_hashlimit_mtinfo1 *info = (void *)match->data; local
193 info->cfg.mode = 0;
194 info->cfg.burst = XT_HASHLIMIT_BURST;
195 info->cfg.gc_interval = XT_HASHLIMIT_GCINTERVAL;
196 info->cfg.expire = XT_HASHLIMIT_EXPIRE;
197 info->cfg.srcmask = 32;
198 info->cfg.dstmask = 32;
203 struct xt_hashlimit_mtinfo1 *info = (void *)match->data; local
205 info->cfg.mode = 0
244 struct xt_hashlimit_info *info = cb->data; local
272 struct xt_hashlimit_mtinfo1 *info = cb->data; local
411 const struct xt_hashlimit_mtinfo1 *info = (const void *)match->data; local
420 const struct xt_hashlimit_mtinfo1 *info = (const void *)match->data; local
483 const struct xt_hashlimit_mtinfo1 *info = (const void *)match->data; local
491 const struct xt_hashlimit_mtinfo1 *info = (const void *)match->data; local
    [all...]
libxt_owner.c 138 struct ipt_owner_info *info = cb->data; local
151 info->invert |= IPT_OWNER_UID;
152 info->match |= IPT_OWNER_UID;
153 info->uid = id;
161 info->invert |= IPT_OWNER_GID;
162 info->match |= IPT_OWNER_GID;
163 info->gid = id;
167 info->invert |= IPT_OWNER_PID;
168 info->match |= IPT_OWNER_PID;
172 info->invert |= IPT_OWNER_SID
185 struct ip6t_owner_info *info = cb->data; local
243 struct xt_owner_match_info *info = cb->data; local
431 const struct ipt_owner_info *info = (void *)match->data; local
444 const struct ip6t_owner_info *info = (void *)match->data; local
455 const struct xt_owner_match_info *info = (void *)match->data; local
465 const struct ipt_owner_info *info = (void *)match->data; local
477 const struct ip6t_owner_info *info = (void *)match->data; local
487 const struct xt_owner_match_info *info = (void *)match->data; local
    [all...]
libxt_time.c 75 struct xt_time_info *info = (void *)m->data; local
78 info->monthdays_match = XT_TIME_ALL_MONTHDAYS;
79 info->weekdays_match = XT_TIME_ALL_WEEKDAYS;
80 info->daytime_start = XT_TIME_MIN_DAYTIME;
81 info->daytime_stop = XT_TIME_MAX_DAYTIME;
84 info->date_start = 0;
85 info->date_stop = INT_MAX;
260 struct xt_time_info *info = cb->data; local
265 info->date_start = time_parse_date(cb->arg, false);
268 info->date_stop = time_parse_date(cb->arg, true)
376 const struct xt_time_info *info = (const void *)match->data; local
410 const struct xt_time_info *info = (const void *)match->data; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 41 ByteArray.write16bit(0, info, 0);
57 ByteArray.write16bit(0, info, 0);
81 int size = info.length;
85 newInfo[i] = info[i];
92 info = newInfo;
100 int index = ByteArray.readU16bit(info, pos + 6);
104 ByteArray.write16bit(cp.addUtf8Info(desc), info, pos + 6); local
118 int index = ByteArray.readU16bit(info, pos + 6);
122 ByteArray.write16bit(cp.addUtf8Info(desc), info, pos + 6); local
139 int size = info.length
    [all...]
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
DNSStateTask.java 86 * Remove the DNS host and service info association with this task.
119 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; local
121 synchronized (info) {
122 if (info.isAssociatedWithTask(this, this.getTaskState())) {
123 logger1.fine(this.getName() + ".run() JmDNS " + this.getTaskDescription() + " " + info.getQualifiedName());
124 stateObjects.add(info);
125 out = this.buildOutgoingForInfo(info, out);
155 protected abstract DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException;
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
ImplHandler.java 149 AssetInfo info = locator.locate(owner, key); local
150 if (info != null)
151 return info;
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
NiftyJmeDisplay.java 73 AssetInfo info = assetManager.locateAsset(key); local
74 if (info != null){
75 return info.openStream();
  /external/kernel-headers/original/linux/
watchdog.h 92 * @info: Pointer to a watchdog_info structure.
108 const struct watchdog_info *info; member in struct:watchdog_device
  /external/libppp/src/
tty.c 258 struct nodeinfo *info; local
273 info = (struct nodeinfo *)reply->data;
294 if (ioctl(p->fd, NGIOCGINFO, info) < 0) {
300 snprintf(ttypath, sizeof ttypath, "%s:", info->name);
348 log_Printf(LogWARN, "%s: Can't request async node info at %s: %s\n",
353 log_Printf(LogWARN, "%s: Can't obtain async node info at %s: %s\n",
  /external/libvorbis/lib/
mapping0.c 41 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)i; local
42 if(info){
43 memset(info,0,sizeof(*info));
44 _ogg_free(info);
61 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm; local
70 if(info->submaps>1){
72 oggpack_write(opb,info->submaps-1,4);
76 if(info->coupling_steps>0){
78 oggpack_write(opb,info->coupling_steps-1,8)
104 vorbis_info_mapping0 *info=_ogg_calloc(1,sizeof(*info)); local
257 vorbis_info_mapping0 *info=ci->map_param[modenumber]; local
711 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)l; local
    [all...]
  /external/libxml2/
HTMLtree.c 778 const htmlElemDesc * info; local
853 * Get specific HTML info for that node.
856 info = htmlTagLookup(cur->name);
858 info = NULL;
871 if ((info != NULL) && (info->empty)) {
873 if ((format) && (!info->isinline) && (cur->next != NULL)) {
885 if ((info != NULL) && (info->saveEndTag != 0) &&
886 (xmlStrcmp(BAD_CAST info->name, BAD_CAST "html")) &
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_android.c 575 struct drm_radeon_info info; local
580 memset(&info, 0, sizeof(info));
581 info.request = RADEON_INFO_DEVICE_ID;
582 info.value = (unsigned long) chip_id;
583 ret = drmCommandWriteRead(fd, DRM_RADEON_INFO, &info, sizeof(info));
585 _eglLog(_EGL_WARNING, "failed to get info for radeon");
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_context.c 500 * If a geometry shader is present, return its info, else the vertex shader's
501 * info.
508 return &draw->gs.geometry_shader->info;
510 return &draw->vs.vertex_shader->info;
534 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local
537 for (i = 0; i < info->num_outputs; i++) {
538 if (info->output_semantic_name[i] == semantic_name &&
539 info->output_semantic_index[i] == semantic_index)
567 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local
570 count = info->num_outputs
    [all...]
draw_pipe_aapoint.c 70 * Subclass of pipe_shader_state to carry extra fragment shader info.
699 /* update vertex attrib info */
711 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local
714 for (i = 0; i < info->num_outputs; i++) {
715 if (info->output_semantic_name[i] == TGSI_SEMANTIC_PSIZE) {
draw_vs.h 111 struct tgsi_shader_info info; member in struct:draw_vertex_shader
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 487 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode ); local
494 ctx->indent -= info->pre_dedent;
497 ctx->indent += info->post_indent;
523 TXT( info->mnemonic );
tgsi_sanity.c 314 const struct tgsi_opcode_info *info; local
324 info = tgsi_get_opcode_info( inst->Instruction.Opcode );
325 if (info == NULL) {
330 if (info->num_dst != inst->Instruction.NumDstRegs) {
331 report_error( ctx, "%s: Invalid number of destination operands, should be %u", info->mnemonic, info->num_dst );
333 if (info->num_src != inst->Instruction.NumSrcRegs) {
334 report_error( ctx, "%s: Invalid number of source operands, should be %u", info->mnemonic, info->num_src );
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 179 struct tgsi_shader_info info; member in struct:pstip_transform_context
424 /* Setup shader transformation info/context.
436 tgsi_scan_shader(fs->tokens, &transform.info);
439 for (i = 0; i < transform.info.num_properties; i++) {
440 if (transform.info.properties[i].name == TGSI_PROPERTY_FS_COORD_ORIGIN)
441 transform.coordOrigin = transform.info.properties[i].data[0];
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_line.c 61 struct lp_line_info *info,
66 info->a0[slot][i] = value;
67 info->dadx[slot][i] = 0.0f;
68 info->dady[slot][i] = 0.0f;
77 struct lp_line_info *info,
82 float a1 = info->v1[vert_attr][i];
83 float a2 = info->v2[vert_attr][i];
86 float dadx = da21 * info->dx * info->oneoverarea;
87 float dady = da21 * info->dy * info->oneoverarea
284 struct lp_line_info info; local
    [all...]
lp_setup_point.c 61 struct point_info *info,
66 info->a0[slot][i] = value;
67 info->dadx[slot][i] = 0.0f;
68 info->dady[slot][i] = 0.0f;
74 const struct point_info *info,
85 float w0 = info->v0[0][3];
89 info->a0[slot][i] = info->v0[slot][i]*w0;
90 info->dadx[slot][i] = 0.0f;
91 info->dady[slot][i] = 0.0f
326 struct point_info info; local
    [all...]
lp_state_fs.h 113 struct lp_tgsi_info info; member in struct:lp_fragment_shader
125 /** Fragment shader input interpolation info */
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.c 104 nvc0_vp_assign_input_slots(struct nv50_ir_prog_info *info)
108 for (n = 0, i = 0; i < info->numInputs; ++i) {
109 switch (info->in[i].sn) {
112 info->in[i].mask = 0x1;
113 info->in[i].slot[0] =
114 nvc0_shader_input_address(info->in[i].sn, 0, 0) / 4;
120 info->in[i].slot[c] = (0x80 + n * 0x10 + c * 0x4) / 4;
128 nvc0_sp_assign_input_slots(struct nv50_ir_prog_info *info)
130 unsigned ubase = MAX2(0x80, 0x20 + info->numPatchConstants * 0x10);
134 for (i = 0; i < info->numInputs; ++i)
547 struct nv50_ir_prog_info *info; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 344 const struct rc_opcode_info * info = rc_get_opcode_info(i); local
347 if (strncmp(tokens.Opcode.String, info->Name, tokens.Opcode.Length)) {
350 inst->U.I.Opcode = info->Opcode;
351 if (info->HasDstReg) {
363 for (j = 0; j < info->NumSrcRegs; j++) {

Completed in 3420 milliseconds

<<51525354555657585960>>