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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequest.java 44 private CertificationRequestInfo info; field in class:CertificationRequest
55 public CertificationRequest(CertificationRequestInfo info,
57 this.info = info;
64 private CertificationRequest(CertificationRequestInfo info,
66 this(info, algId, signature);
78 * @return Returns the info.
81 return info;
105 CertificationRequestInfo.ASN1, // info
123 values[0] = certReq.info;
    [all...]
  /dalvik/libcore/support/src/test/java/tests/resources/Package/
hyts_package.jar 
  /external/bluetooth/glib/gio/
gpollfilemonitor.c 122 GFileInfo *info; local
125 info = g_file_query_info_finish (poll_monitor->file, res, NULL);
129 event = calc_event_type (poll_monitor->last_info, info);
149 if (info)
150 poll_monitor->last_info = g_object_ref (info);
155 if (info)
156 g_object_unref (info);
186 GFileInfo *info; local
188 info = g_file_query_info_finish (poll_monitor->file, res, NULL);
190 poll_monitor->last_info = info;
    [all...]
glocalfileinfo.c 192 GFileInfo *info,
216 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_SELINUX_CONTEXT, context);
377 escape_xattr (GFileInfo *info,
387 g_file_info_set_attribute_string (info, gio_attr, escaped_val);
395 GFileInfo *info,
432 escape_xattr (info, gio_attr, value_p, len);
443 GFileInfo *info,
508 get_one_xattr (path, info, gio_attr, attr, follow_symlinks);
537 get_one_xattr (path, info, attr, a, follow_symlinks);
553 GFileInfo *info,
1410 GFileInfo *info; local
1691 GFileInfo *info; local
    [all...]
  /external/qemu/hw/
android_arm.c 71 struct arm_boot_info info; local
167 memset(&info, 0, sizeof info);
168 info.ram_size = ram_size;
169 info.kernel_filename = kernel_filename;
170 info.kernel_cmdline = kernel_cmdline;
171 info.initrd_filename = initrd_filename;
172 info.nb_cpus = 1;
173 info.board_id = 1441;
175 arm_load_kernel(env, &info);
    [all...]
sysbus.c 103 SysBusDeviceInfo *info = container_of(base, SysBusDeviceInfo, qdev); local
105 info->init(sysbus_from_qdev(dev));
108 void sysbus_register_withprop(SysBusDeviceInfo *info)
110 info->qdev.init = sysbus_device_init;
111 info->qdev.bus_type = BUS_TYPE_SYSTEM;
113 assert(info->qdev.size >= sizeof(SysBusDevice));
114 qdev_register(&info->qdev);
119 SysBusDeviceInfo *info; local
121 info = qemu_mallocz(sizeof(*info));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 46 * @param info the {@link DelayedLaunchInfo} that contains launch details
51 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
55 AdtPlugin.printToConsole(info.getProject(), msg);
57 // In debug mode, we need to add the info to the list of application monitoring
60 info.incrementAttemptCount();
64 + (info.isDebugMode() ? " -D" //$NON-NLS-1$
67 + info.getPackageName() + "/" //$NON-NLS-1$
71 new AMReceiver(info, device, mLaunchController));
75 if (info.isDebugMode() == false) {
83 AdtPlugin.printErrorToConsole(info.getProject()
    [all...]
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfo.java 46 Set<ClassPathPackageInfo> info = Sets.newHashSet(); local
48 info.add(source.getPackageInfo(name));
50 return info;
61 for (ClassPathPackageInfo info : getSubpackages()) {
62 info.addTopLevelClassesTo(set);
  /external/webkit/WebCore/rendering/
SVGRootInlineBox.cpp 266 static inline void startTextChunk(SVGTextChunkLayoutInfo& info)
268 info.chunk.boxes.clear();
269 info.chunk.boxes.append(SVGInlineBoxCharacterRange());
271 info.chunk.start = info.it;
272 info.assignChunkProperties = true;
275 static inline void closeTextChunk(SVGTextChunkLayoutInfo& info)
277 ASSERT(!info.chunk.boxes.last().isOpen());
278 ASSERT(info.chunk.boxes.last().isClosed());
280 info.chunk.end = info.it
591 SVGTextDecorationInfo info; local
1702 SVGTextDecorationInfo info; local
    [all...]
  /external/elfutils/libebl/
i386_corenote.c 36 } pr_info; /* Info associated with signal. */
128 struct elf_prpsinfo *info = (struct elf_prpsinfo *) desc; local
135 info->pr_sname, info->pr_state, info->pr_zomb, info->pr_nice,
136 info->pr_flag, info->pr_uid, info->pr_gid,
137 info->pr_pid, info->pr_ppid, info->pr_pgrp, info->pr_sid
    [all...]
  /external/jpeg/
jmemname.c 204 read_backing_store (j_common_ptr cinfo, backing_store_ptr info,
208 if (fseek(info->temp_file, file_offset, SEEK_SET))
210 if (JFREAD(info->temp_file, buffer_address, byte_count)
217 write_backing_store (j_common_ptr cinfo, backing_store_ptr info,
221 if (fseek(info->temp_file, file_offset, SEEK_SET))
223 if (JFWRITE(info->temp_file, buffer_address, byte_count)
230 close_backing_store (j_common_ptr cinfo, backing_store_ptr info)
232 fclose(info->temp_file); /* close the file */
233 unlink(info->temp_name); /* delete the file */
238 TRACEMSS(cinfo, 1, JTRC_TFILE_CLOSE, info->temp_name)
    [all...]
jmem-android.c 99 read_backing_store (j_common_ptr cinfo, backing_store_ptr info,
103 if (fseek(info->temp_file, file_offset, SEEK_SET))
105 if (JFREAD(info->temp_file, buffer_address, byte_count)
112 write_backing_store (j_common_ptr cinfo, backing_store_ptr info,
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
118 if (JFWRITE(info->temp_file, buffer_address, byte_count)
125 close_backing_store (j_common_ptr cinfo, backing_store_ptr info)
127 fclose(info->temp_file);
155 * behind the scenes. We don't have to use info->temp_name[] at all;
160 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
    [all...]
  /external/tremolo/Tremolo/
floor0.c 362 vorbis_info_floor0 *info=(vorbis_info_floor0 *)i; local
363 if(info)_ogg_free(info);
370 vorbis_info_floor0 *info=(vorbis_info_floor0 *)_ogg_malloc(sizeof(*info)); local
371 info->order=oggpack_read(opb,8);
372 info->rate=oggpack_read(opb,16);
373 info->barkmap=oggpack_read(opb,16);
374 info->ampbits=oggpack_read(opb,6);
375 info->ampdB=oggpack_read(opb,8)
396 vorbis_info_floor0 *info=(vorbis_info_floor0 *)i; local
402 vorbis_info_floor0 *info=(vorbis_info_floor0 *)i; local
433 vorbis_info_floor0 *info=(vorbis_info_floor0 *)i; local
    [all...]
  /development/build/tools/
windows_sdk.mk 46 $(info )
47 $(info ====== [Windows SDK] $1 ======)
48 $(info )
51 define winsdk-info
52 $(info LINUX_SDK_NAME: $(LINUX_SDK_NAME))
53 $(info WIN_SDK_NAME : $(WIN_SDK_NAME))
54 $(info WIN_SDK_DIR : $(WIN_SDK_DIR))
55 $(info WIN_SDK_ZIP : $(WIN_SDK_ZIP))
67 $(call winsdk-info)
  /external/e2fsprogs/debugfs/
set_fields.c 51 errcode_t (*func)(struct field_set_info *info, char *arg);
56 static errcode_t parse_uint(struct field_set_info *info, char *arg);
57 static errcode_t parse_int(struct field_set_info *info, char *arg);
58 static errcode_t parse_string(struct field_set_info *info, char *arg);
59 static errcode_t parse_uuid(struct field_set_info *info, char *arg);
60 static errcode_t parse_hashalg(struct field_set_info *info, char *arg);
61 static errcode_t parse_time(struct field_set_info *info, char *arg);
62 static errcode_t parse_bmap(struct field_set_info *info, char *arg);
240 static errcode_t parse_uint(struct field_set_info *info, char *arg)
251 u.ptr8 = (__u8 *) info->ptr
    [all...]
  /external/iptables/extensions/
libip6t_policy.c 173 struct ip6t_policy_info *info = (void *)(*match)->data; local
174 struct ip6t_policy_elem *e = &info->pol[info->len];
183 if (info->flags & (IP6T_POLICY_MATCH_IN|IP6T_POLICY_MATCH_OUT))
190 info->flags |= parse_direction(argv[optind-1]);
197 info->flags |= parse_policy(argv[optind-1]);
200 if (info->flags & IP6T_POLICY_MATCH_STRICT)
208 info->flags |= IP6T_POLICY_MATCH_STRICT;
286 if (++info->len == IP6T_POLICY_MAX_ELEM)
294 policy_info = info;
300 struct ip6t_policy_info *info = policy_info; local
434 const struct ip6t_policy_info *info = (void *)match->data; local
450 const struct ip6t_policy_info *info = (void *)match->data; local
    [all...]
libipt_2tos.c 51 parse_tos(const char *s, struct ipt_tos_info *info)
62 info->tos = (u_int8_t )tos;
68 info->tos = TOS_values[i].TOS;
135 const struct ipt_tos_info *info = (const struct ipt_tos_info *)match->data; local
138 if (info->invert)
140 print_tos(info->tos, numeric);
147 const struct ipt_tos_info *info = (const struct ipt_tos_info *)match->data; local
149 if (info->invert)
152 print_tos(info->tos, 0);
  /external/ppp/pppd/plugins/radius/
radrealms.c 58 info("Looking up servers for realm '%s'", realm);
60 info("Looking up servers for DEFAULT realm");
72 info("Reading %s", radrealms_config);
91 info("Parsing '%s' entry:", p);
108 info(" - Matched realm %s", p);
116 info(" - Address is '%s'",p);
124 info(" - Port is '%d'", s->port[s->max]);
127 info(" - Skipping realm '%s'", p);
146 info("RADIUS Realms plugin initialized.");
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLSelectElementCustom.cpp 49 v8::Handle<v8::Value> V8HTMLSelectElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
52 HTMLSelectElement* select = V8HTMLSelectElement::toNative(info.Holder());
53 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name);
59 if (info.Holder()->HasRealNamedCallbackProperty(name))
77 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
79 ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder()));
80 RefPtr<Node> result = V8HTMLSelectElement::toNative(info.Holder())->item(index);
87 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
90 HTMLSelectElement* select = V8HTMLSelectElement::toNative(info.Holder());
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 122 CallerInfo info = new CallerInfo(); local
123 info.photoResource = 0;
124 info.phoneLabel = null;
125 info.numberType = 0;
126 info.numberLabel = null;
127 info.cachedPhoto = null;
128 info.isCachedPhotoCurrent = false;
129 info.contactExists = false;
144 info.name = cursor.getString(columnIndex);
150 info.phoneNumber = cursor.getString(columnIndex)
262 CallerInfo info = getCallerInfo(context, contactUri); local
290 CallerInfo info = getCallerInfo(context, number); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 87 ItemInfo(ItemInfo info) {
88 id = info.id;
89 cellX = info.cellX;
90 cellY = info.cellY;
91 spanX = info.spanX;
92 spanY = info.spanY;
93 screen = info.screen;
94 itemType = info.itemType;
95 container = info.container;
  /external/e2fsprogs/ext2ed/
dir_com.c 82 struct struct_file_info search_dir_entries (int (*action) (struct struct_file_info *info),int *status)
100 struct struct_file_info info; /* Temporary variables used to */ local
104 info=first_file_info; /* Start from the first entry - Read it */
105 low_read (info.buffer,file_system_info.block_size,info.global_block_offset);
106 dir_entry_ptr=(struct ext2_dir_entry_2 *) (info.buffer+info.dir_entry_offset);
108 while (info.file_offset < info.file_length) { /* While we haven't reached the end */
110 *status=return_code=action (&info); /* Call the client function to test *
220 struct struct_file_info info; local
346 struct struct_file_info info; local
    [all...]
  /external/e2fsprogs/lib/ss/
execute_cmd.c 72 * ss-internal index for subsystem control info structure
90 register ss_data *info; local
95 info = ss_info(sci_idx);
96 info->argc = argc;
97 info->argv = argv;
101 info->current_request = request->command_names[0];
103 sci_idx,info->info_ptr);
104 info->current_request = (char *)NULL;
119 * ss-internal index for subsystem control info structure
138 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/opencore/tools_v2/build/make/
library.mk 12 #$(info LOCAL_PATH = $(LOCAL_PATH))
13 #$(info LOCAL_SRCDIR = $(LOCAL_SRCDIR))
14 #$(info TMP_SRCDIR = $(TMP_SRCDIR))
15 #$(info LOCAL_INCSRCDIR = $(LOCAL_INCSRCDIR))
35 # $(info plugins to include $(TARGET) = $(MY_TARGET_PLUGINS))
69 # $(info target = $(TARGET), libtype = $($(TARGET)_libtype))
119 #$(info src_root = $(abspath $(SRC_ROOT)))
120 #$(info build_root = $(abspath $(BUILD_ROOT)))
121 #$(info objdir = $(OBJDIR))
138 # $(info DEPS = $(DEPS)
    [all...]

Completed in 63 milliseconds

1 2 3 4 5 6 7 8 91011>>