Searched defs:ent (Results 1 - 25 of 99) sorted by relevance

1234

/external/openssh/
H A Dauth-sia.c56 SIAENTITY *ent = NULL; local
64 if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user,
68 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {
72 sia_ses_release(&ent);
77 sia_ses_release(&ent);
85 SIAENTITY *ent = NULL; local
90 if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name,
94 if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) {
95 sia_ses_release(&ent);
99 ent
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc25 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local
27 internal_memset(ent, 0, sizeof(*ent));
28 ent->pc = addr;
29 return ent;
33 ReportStack *ent = NewReportStackEntry(info.address); local
41 ent->module = internal_strdup(short_module_name);
43 ent->offset = info.module_offset;
45 ent->func = internal_strdup(info.function);
48 ent
[all...]
H A Dtsan_report.cc52 void PrintStack(const ReportStack *ent) { argument
53 for (int i = 0; ent; ent = ent->next, i++) {
54 TsanPrintf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line);
55 if (ent->col)
56 TsanPrintf(":%d", ent->col);
57 if (ent
149 PrintStack(const ReportStack *ent) argument
[all...]
/external/openssh/openbsd-compat/
H A Dport-uw.c95 struct passwd *ent = NULL; local
111 while (ent = fgetpwent(fd)) {
112 if (strcmp (ent->pw_name, namep) == 0) {
/external/quake/quake/src/WinQuake/
H A Dworld.h36 edict_t *ent; // entity the surface is on member in struct:__anon11893
48 void SV_UnlinkEdict (edict_t *ent);
51 // flags ent->v.modified
53 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers);
55 // flags ent->v.modified
56 // sets ent->v.absmin and ent->v.absmax
65 edict_t *SV_TestEntityPosition (edict_t *ent);
H A Dgl_refrag.cpp51 void R_RemoveEfrags (entity_t *ent) argument
55 ef = ent->efrag;
82 ent->efrag = NULL;
163 void R_AddEfrags (entity_t *ent) argument
168 if (!ent->model)
171 r_addent = ent;
173 lastlink = &ent->efrag;
176 entmodel = ent->model;
180 r_emins[i] = ent->origin[i] + entmodel->mins[i];
181 r_emaxs[i] = ent
[all...]
H A Dr_efrag.cpp52 void R_RemoveEfrags (entity_t *ent) argument
56 ef = ent->efrag;
83 ent->efrag = NULL;
202 void R_AddEfrags (entity_t *ent) argument
207 if (!ent->model)
210 if (ent == cl_entities)
213 r_addent = ent;
215 lastlink = &ent->efrag;
218 entmodel = ent->model;
222 r_emins[i] = ent
[all...]
H A Dcl_tent.cpp67 int ent; local
72 ent = MSG_ReadShort ();
84 if (b->entity == ent)
86 b->entity = ent;
99 b->entity = ent;
303 entity_t *ent; local
309 ent = &cl_temp_entities[num_temp_entities];
310 memset (ent, 0, sizeof(*ent));
312 cl_visedicts[cl_numvisedicts] = ent;
331 entity_t *ent; local
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dnethelpers.cc70 hostent* ent = gethostbyname(hostname); local
71 if (!ent) {
79 total_len += strlen(ent->h_name) + 1;
80 while (ent->h_aliases[num_aliases]) {
81 total_len += sizeof(char*) + strlen(ent->h_aliases[num_aliases]) + 1;
85 while (ent->h_addr_list[num_addrs]) {
86 total_len += sizeof(char*) + ent->h_length;
99 memcpy(p, ent->h_name, strlen(ent->h_name) + 1);
100 p += strlen(ent
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbrel_ma.c30 struct ext2_block_relocate_entry *ent);
32 struct ext2_block_relocate_entry *ent);
35 struct ext2_block_relocate_entry *ent);
105 struct ext2_block_relocate_entry *ent)
112 ma->entries[(unsigned)old] = *ent;
117 struct ext2_block_relocate_entry *ent)
126 *ent = ma->entries[old];
137 struct ext2_block_relocate_entry *ent)
146 *ent = ma->entries[(unsigned)brel->current];
104 bma_put(ext2_brel brel, blk_t old, struct ext2_block_relocate_entry *ent) argument
116 bma_get(ext2_brel brel, blk_t old, struct ext2_block_relocate_entry *ent) argument
136 bma_next(ext2_brel brel, blk_t *old, struct ext2_block_relocate_entry *ent) argument
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dpscap.c48 struct dirent *ent; local
68 while (( ent = readdir(d) )) {
76 if(*ent->d_name<'0' || *ent->d_name>'9')
79 pid = strtol(ent->d_name, NULL, 10);
/external/quake/quake/src/QW/client/
H A Dgl_refrag.c51 void R_RemoveEfrags (entity_t *ent) argument
55 ef = ent->efrag;
82 ent->efrag = NULL;
163 void R_AddEfrags (entity_t *ent) argument
168 if (!ent->model)
171 r_addent = ent;
173 lastlink = &ent->efrag;
176 entmodel = ent->model;
180 r_emins[i] = ent->origin[i] + entmodel->mins[i];
181 r_emaxs[i] = ent
[all...]
H A Dr_efrag.c52 void R_RemoveEfrags (entity_t *ent) argument
56 ef = ent->efrag;
83 ent->efrag = NULL;
202 void R_AddEfrags (entity_t *ent) argument
207 if (!ent->model)
210 if (ent == &r_worldentity)
213 r_addent = ent;
215 lastlink = &ent->efrag;
218 entmodel = ent->model;
222 r_emins[i] = ent
[all...]
H A Dcl_demo.c384 entity_t *ent; local
523 ent = cl_static_entities + i;
528 if (ent->model == cl.model_precache[j])
535 MSG_WriteByte (&buf, ent->frame);
537 MSG_WriteByte (&buf, ent->skinnum);
540 MSG_WriteCoord (&buf, ent->origin[j]);
541 MSG_WriteAngle (&buf, ent->angles[j]);
/external/quake/quake/src/QW/server/
H A Dworld.h36 edict_t *ent; // entity the surface is on member in struct:__anon11570
62 void SV_UnlinkEdict (edict_t *ent);
65 // flags ent->v.modified
67 void SV_LinkEdict (edict_t *ent, qboolean touch_triggers);
69 // flags ent->v.modified
70 // sets ent->v.absmin and ent->v.absmax
77 edict_t *SV_TestEntityPosition (edict_t *ent);
93 edict_t *SV_TestPlayerPosition (edict_t *ent, vec3_t origin);
H A Dsv_init.c283 edict_t *ent; local
331 ent = EDICT_NUM(i+1);
332 svs.clients[i].edict = ent;
372 ent = EDICT_NUM(0);
373 ent->free = false;
374 ent->v.model = PR_SetString(sv.worldmodel->name);
375 ent->v.modelindex = 1; // world model
376 ent->v.solid = SOLID_BSP;
377 ent->v.movetype = MOVETYPE_PUSH;
/external/e2fsprogs/resize/
H A Dextent.c82 struct ext2_extent_entry *ent; local
98 ent = extent->list + curr;
104 ent--;
105 if ((ent->old_loc + ent->size == old_loc) &&
106 (ent->new_loc + ent->size == new_loc)) {
107 ent->size++;
113 if (ent->old_loc + ent
199 struct ext2_extent_entry *ent; local
216 struct ext2_extent_entry *ent; local
[all...]
/external/oprofile/libutil/
H A Dop_file.c89 struct dirent * ent,
94 name_len = strlen(basedir) + strlen("/") + strlen(ent->d_name) + 1;
96 sprintf(name, "%s/%s", basedir, ent->d_name);
134 struct dirent * ent; local
141 while ((ent = readdir(dir)) != 0) {
142 if (is_dot_or_dotdot(ent->d_name))
144 if (fnmatch(filter, ent->d_name, 0) == 0)
155 getpathname(ent->d_name, name_list);
158 name = make_pathname_from_dirent(base_dir, ent,
173 name = make_pathname_from_dirent(base_dir, ent,
88 make_pathname_from_dirent(char const * basedir, struct dirent * ent, struct stat * st_buf) argument
[all...]
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc43 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local
45 internal_memset(ent, 0, sizeof(*ent));
46 ent->pc = addr;
47 return ent;
/external/e2fsprogs/debugfs/
H A Dhtree.c118 struct ext2_dx_entry *ent,
126 limit = *((struct ext2_dx_countlimit *) ent);
134 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0;
137 ext2fs_le32_to_cpu(ent[i].block));
143 e.hash = ext2fs_le32_to_cpu(ent[i].hash);
144 e.block = ext2fs_le32_to_cpu(ent[i].block);
205 struct ext2_dx_entry *ent; local
280 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length);
281 limit = (struct ext2_dx_countlimit *) ent;
283 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent,
115 htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode, struct ext2_dx_root_info * rootnode, struct ext2_dx_entry *ent, char *buf, int level) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Ddirinfo.c112 struct dir_info *dir, ent; local
136 ent.ino = ino;
137 ent.parent = parent;
138 ent.dotdot = parent;
141 e2fsck_put_dir_info(ctx, &ent);
/external/e2fsprogs/tests/progs/
H A Dtest_rel.c93 struct ext2_block_relocate_entry *ent)
95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
96 ent->owner.block_ref, ent->offset);
103 struct ext2_inode_relocate_entry *ent,
111 ent->new, ent->orig, ent->max_refs);
176 struct ext2_block_relocate_entry ent; local
200 ent
92 display_brel_entry(blk_t old, struct ext2_block_relocate_entry *ent) argument
102 display_irel_entry(ext2_ino_t old, struct ext2_inode_relocate_entry *ent, int do_refs) argument
217 struct ext2_block_relocate_entry ent; local
255 struct ext2_block_relocate_entry ent; local
277 struct ext2_block_relocate_entry ent; local
385 struct ext2_inode_relocate_entry ent; local
421 struct ext2_inode_relocate_entry ent; local
447 struct ext2_inode_relocate_entry ent; local
487 struct ext2_inode_relocate_entry ent; local
509 struct ext2_inode_relocate_entry ent; local
[all...]
/external/e2fsprogs/util/
H A Dsubst.c37 struct subst_entry *ent = 0; local
41 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry));
42 if (!ent)
44 ent->name = (char *) malloc(strlen(name)+1);
45 if (!ent->name)
47 ent->value = (char *) malloc(strlen(value)+1);
48 if (!ent->value)
50 strcpy(ent->name, name);
51 strcpy(ent->value, value);
52 ent
66 struct subst_entry *ent; local
124 struct subst_entry *ent; local
[all...]
/external/libxml2/
H A Dentities.c820 * @ent: An entity
827 xmlCopyEntity(xmlEntityPtr ent) { argument
838 cur->etype = ent->etype;
839 if (ent->name != NULL)
840 cur->name = xmlStrdup(ent->name);
841 if (ent->ExternalID != NULL)
842 cur->ExternalID = xmlStrdup(ent->ExternalID);
843 if (ent->SystemID != NULL)
844 cur->SystemID = xmlStrdup(ent->SystemID);
845 if (ent
919 xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) argument
1005 xmlDumpEntityDeclScan(xmlEntityPtr ent, xmlBufferPtr buf) argument
[all...]
/external/openssl/crypto/x509/
H A Dby_dir.c187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) argument
189 if (ent->dir)
190 OPENSSL_free(ent->dir);
191 if (ent->hashes)
192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
193 OPENSSL_free(ent);
225 BY_DIR_ENTRY *ent; local
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
233 if (strlen(ent->dir) == (size_t)len &&
234 strncmp(ent
328 BY_DIR_ENTRY *ent; local
[all...]

Completed in 1605 milliseconds

1234