/external/libusb-compat/libusb/ |
usbi.h | 25 #define LIST_ADD(begin, ent) \ 28 ent->next = begin; \ 29 ent->next->prev = ent; \ 31 ent->next = NULL; \ 32 ent->prev = NULL; \ 33 begin = ent; \ 36 #define LIST_DEL(begin, ent) \ 38 if (ent->prev) \ 39 ent->prev->next = ent->next; [all...] |
/external/openssh/ |
auth-sia.c | 56 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->authtype = SIA_A_NONE [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_symbolize.cc | 40 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local 42 internal_memset(ent, 0, sizeof(*ent)); 43 ent->pc = addr; 44 return ent; 60 ReportStack *ent = NewReportStackEntry(info.address); local 61 ent->module = StripModuleName(info.module); 62 ent->offset = info.module_offset; 64 ent->func = internal_strdup(info.function); 66 ent->file = internal_strdup(info.file) [all...] |
tsan_report.cc | 65 void PrintStack(const ReportStack *ent) { 66 if (ent == 0) { 70 for (int i = 0; ent; ent = ent->next, i++) { 71 Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line); 72 if (ent->col) 73 Printf(":%d", ent->col) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
brel.h | 38 struct ext2_block_relocate_entry *ent); 44 struct ext2_block_relocate_entry *ent); 56 struct ext2_block_relocate_entry *ent); 79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent)) 80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent)) 82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
|
irel.h | 36 struct ext2_inode_relocate_entry *ent); 41 struct ext2_inode_relocate_entry *ent); 47 struct ext2_inode_relocate_entry *ent); 59 struct ext2_inode_relocate_entry *ent); 103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent)) 104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, ent)) 105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \ 106 ((irel)->get_by_orig((irel), orig, old, ent)) [all...] |
/ndk/tests/build/build-assembly-file/jni/ |
assembly-mips.S | 3 .ent foo
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
linuxfdwalk.c | 62 struct dirent *ent; local 64 while (errno = 0, (ent = readdir(dir)) != NULL) { 65 if (strcmp(ent->d_name, ".") == 0 || 66 strcmp(ent->d_name, "..") == 0) { 72 int fd = parse_fd(ent->d_name);
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509/ |
by_dir.c | 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) 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->dir,ss,(unsigned int)len) == 0 334 BY_DIR_ENTRY *ent; local [all...] |
/external/openssl/crypto/x509/ |
by_dir.c | 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) 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->dir,ss,(unsigned int)len) == 0 328 BY_DIR_ENTRY *ent; local [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
nethelpers.cc | 70 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->h_name) + 1 [all...] |
/external/e2fsprogs/util/ |
subst.c | 37 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->next = subst_table 66 struct subst_entry *ent; local 124 struct subst_entry *ent; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
mapi_abi.py | 162 raise Exception('recursive alias %s' % ent.name) 178 ent = ABIEntry(cols, attrs) 179 entry_dict[ent.name] = ent 234 raise Exception('recursive alias %s' % ent.name) 246 ent = ABIEntry(cols, attrs) 247 if entry_dict.has_key(ent.name): 248 raise Exception('%s is duplicated' % (ent.name)) 249 entry_dict[ent.name] = ent [all...] |
/external/mesa3d/src/mapi/mapi/ |
mapi_abi.py | 162 raise Exception('recursive alias %s' % ent.name) 178 ent = ABIEntry(cols, attrs) 179 entry_dict[ent.name] = ent 234 raise Exception('recursive alias %s' % ent.name) 246 ent = ABIEntry(cols, attrs) 247 if entry_dict.has_key(ent.name): 248 raise Exception('%s is duplicated' % (ent.name)) 249 entry_dict[ent.name] = ent [all...] |
/bionic/libc/arch-mips/bionic/ |
__get_sp.S | 35 .ent __get_sp
|
bzero.S | 36 .ent bzero
|
/external/e2fsprogs/resize/ |
extent.c | 82 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->size > old_loc 199 struct ext2_extent_entry *ent; local 216 struct ext2_extent_entry *ent; local [all...] |
/external/valgrind/main/none/tests/x86-linux/ |
seg_override.c | 37 inline static void *wine_ldt_get_base( const LDT_ENTRY *ent ) 39 return (void *)(ent->BaseLow | 40 (unsigned long)ent->HighWord.Bits.BaseMid << 16 | 41 (unsigned long)ent->HighWord.Bits.BaseHi << 24); 43 inline static unsigned int wine_ldt_get_limit( const LDT_ENTRY *ent ) 45 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16); 46 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
|
/external/e2fsprogs/tests/progs/ |
test_rel.c | 93 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.new = new 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/oprofile/libutil/ |
op_file.c | 89 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, [all...] |
/frameworks/av/media/libstagefright/id3/ |
testid3.cpp | 127 struct dirent *ent; local 128 while ((ent = readdir(dir)) != NULL) { 129 if (!strcmp(".", ent->d_name) || !strcmp("..", ent->d_name)) { 136 strcat(newPath, ent->d_name); 138 if (ent->d_type == DT_DIR) { 140 } else if (ent->d_type == DT_REG) { 141 size_t len = strlen(ent->d_name); 144 && !strcasecmp(ent->d_name + len - 4, ".mp3")) {
|
/device/samsung/manta/libsensors/ |
SensorBase.cpp | 109 const struct dirent *ent; local 124 while (ent = readdir(dp), ent != NULL) { 125 if (strcmp(ent->d_name, ".") != 0 && 126 strcmp(ent->d_name, "..") != 0 && 127 strlen(ent->d_name) > strlen(type) && 128 strncmp(ent->d_name, type, strlen(type)) == 0) { 129 if (sscanf(ent->d_name + strlen(type), "%d", &iio_id) != 1)
|
/dalvik/vm/mterp/mips/ |
OP_NOP.S | 10 .ent dalvik_inst
|
/frameworks/base/services/java/com/android/server/ |
AttributeCache.java | 102 Entry ent = null; local 106 ent = map.get(styleable); 107 if (ent != null) { 108 return ent; 132 ent = new Entry(pkg.context, 134 map.put(styleable, ent); 139 return ent;
|
/external/chromium_org/sync/test/engine/ |
mock_connection_manager.cc | 253 sync_pb::SyncEntity* ent = AddUpdateMeta( local 257 ent->set_position_in_parent(position); 258 ent->mutable_specifics()->CopyFrom(specifics); 259 ent->set_folder(is_dir); 260 return ent; 274 sync_pb::SyncEntity* ent = AddUpdateSpecifics( local 276 ent->set_originator_cache_guid(originator_cache_guid); 277 ent->set_originator_client_item_id(originator_client_item_id); 278 return ent; 286 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries() local 307 sync_pb::SyncEntity* ent = local 323 sync_pb::SyncEntity* ent = local 333 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local 398 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local 428 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local [all...] |