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

1 23 4 5 6 7 8 91011>>

  /external/quake/quake/src/WinQuake/
conproc.cpp 47 CONSOLE_SCREEN_BUFFER_INFO info; local
176 CONSOLE_SCREEN_BUFFER_INFO info; local
179 bRet = GetConsoleScreenBufferInfo (hStdout, &info);
182 *piLines = info.dwSize.Y;
292 CONSOLE_SCREEN_BUFFER_INFO info; local
303 if (!GetConsoleScreenBufferInfo(hStdout, &info))
307 info.srWindow.Left = 0;
308 info.srWindow.Right = info.dwSize.X - 1;
309 info.srWindow.Top = 0;
    [all...]
  /external/bluetooth/glib/gio/
gwin32appinfo.c 75 GWin32AppInfo *info; local
77 info = G_WIN32_APP_INFO (object);
79 g_free (info->id);
80 g_free (info->id_utf8);
81 g_free (info->name);
82 g_free (info->executable);
109 GWin32AppInfo *info; local
112 info = g_object_new (G_TYPE_WIN32_APP_INFO, NULL);
113 info->id = id; /* Takes ownership */
114 info->id_utf8 = g_utf16_to_utf8 (id, -1, NULL, NULL, NULL);
179 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
211 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
219 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
237 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
257 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
343 GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); local
563 GAppInfo *info; local
576 GAppInfo *info; local
633 GAppInfo *info; local
    [all...]
  /external/e2fsprogs/debian/
e2fslibs-dev.doc-base 9 Index: /usr/share/doc/e2fslibs/html-info/libext2fs_toc.html
10 Files: /usr/share/doc/e2fslibs/html-info/*.html
  /external/expat/xmlwf/
codepage.c 17 CPINFO info; local
18 if (!GetCPInfo(cp, &info) || info.MaxCharSize > 2)
22 if (info.MaxCharSize > 1) {
25 if (info.LeadByte[i] == 0 && info.LeadByte[i + 1] == 0)
27 lim = info.LeadByte[i + 1];
28 for (j = info.LeadByte[i]; j <= lim; j++)
  /external/webkit/WebCore/manual-tests/inspector/resources/
script-console-calls.js 1 console.info("Test console.info");
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/share/info/
dir 1 This is the file .../info/dir, which contains the
2 topmost node of the Info hierarchy, called (dir)Top.
3 The first time you invoke Info you start off looking at this node.
5 File: dir, Node: Top This is the top of the INFO tree
8 Typing "q" exits, "?" lists all Info commands, "d" returns here,
  /external/icu4c/io/
uscanf_p.c 118 u_scanf_spec_info *info = &(spec->fInfo); local
123 info->fWidth = -1;
124 info->fSpec = 0x0000;
125 info->fPadChar = 0x0020;
126 info->fSkipArg = FALSE;
127 info->fIsLongDouble = FALSE;
128 info->fIsShort = FALSE;
129 info->fIsLong = FALSE;
130 info->fIsLongLong = FALSE;
131 info->fIsString = TRUE
304 ufmt_type_info info; member in struct:u_scanf_info
1275 ufmt_type_info info; local
    [all...]
uprntf_p.c 79 * @param info A pointer to a <TT>u_printf_spec_info</TT> struct containing
89 const u_printf_spec_info *info,
93 ufmt_type_info info; member in struct:u_printf_info
123 const u_printf_spec_info *info,
128 if(info->fShowSign) {
134 if (info->fSpace) {
162 const u_printf_spec_info *info,
167 if(info->fShowSign) {
182 const u_printf_spec_info *info,
196 const u_printf_spec_info *info,
1220 u_printf_spec_info *info = &(spec.fInfo); local
    [all...]
  /external/bluetooth/glib/tests/
gio-ls.c 76 GFileInfo *info; local
88 while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
90 const gchar *name = g_file_info_get_name (info);
97 g_file_info_get_file_type (info) == G_FILE_TYPE_DIRECTORY ? 'd' : '-',
98 g_file_info_get_attribute_boolean (info, G_FILE_ATTRIBUTE_ACCESS_CAN_READ) ? 'r' : '-',
99 g_file_info_get_attribute_boolean (info, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE) ? 'w' : '-',
100 g_file_info_get_attribute_boolean (info, G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE) ? 'x' : '-');
102 val = g_file_info_get_attribute_string (info, G_FILE_ATTRIBUTE_OWNER_USER);
105 val = g_file_info_get_attribute_string (info, G_FILE_ATTRIBUTE_OWNER_GROUP);
111 g_object_unref (info);
    [all...]
  /external/dbus/dbus/
dbus-userdb.c 40 * @param info the info
43 _dbus_user_info_free_allocated (DBusUserInfo *info)
45 if (info == NULL) /* hash table will pass NULL */
48 _dbus_user_info_free (info);
49 dbus_free (info);
56 * @param info the info
59 _dbus_group_info_free_allocated (DBusGroupInfo *info)
61 if (info == NULL) /* hash table will pass NULL *
107 DBusUserInfo *info; local
215 const DBusUserInfo *info; local
370 const DBusUserInfo *info; local
409 const DBusUserInfo *info; local
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ApplicationInfoTest.java 59 ApplicationInfo info = new ApplicationInfo(); local
62 info.packageName = mPackageName;
63 ApplicationInfo copy = new ApplicationInfo(info);
64 assertEquals(info.packageName, copy.packageName);
79 ApplicationInfo info = ApplicationInfo.CREATOR.createFromParcel(p); local
80 assertEquals(mApplicationInfo.taskAffinity, info.taskAffinity);
81 assertEquals(mApplicationInfo.permission, info.permission);
82 assertEquals(mApplicationInfo.processName, info.processName);
83 assertEquals(mApplicationInfo.className, info.className);
84 assertEquals(mApplicationInfo.theme, info.theme)
    [all...]
  /external/iptables/extensions/
libip6t_length.c 43 parse_lengths(const char *s, struct ip6t_length_info *info)
50 info->min = info->max = parse_length(buffer);
55 info->min = buffer[0] ? parse_length(buffer) : 0;
56 info->max = cp[0] ? parse_length(cp) : 0xFFFF;
60 if (info->min > info->max)
63 "range value `%u'", info->min, info->max);
75 struct ip6t_length_info *info = (struct ip6t_length_info *)(*match)->data local
    [all...]
libipt_length.c 41 parse_lengths(const char *s, struct ipt_length_info *info)
48 info->min = info->max = parse_length(buffer);
53 info->min = buffer[0] ? parse_length(buffer) : 0;
54 info->max = cp[0] ? parse_length(cp) : 0xFFFF;
58 if (info->min > info->max)
61 "range value `%u'", info->min, info->max);
73 struct ipt_length_info *info = (struct ipt_length_info *)(*match)->data local
    [all...]
libip6t_SECMARK.c 44 struct xt_secmark_target_info *info = local
52 info->mode = SECMARK_MODE_SEL;
60 strcpy(info->u.sel.selctx, optarg);
76 static void print_secmark(struct xt_secmark_target_info *info)
78 switch (info->mode) {
80 printf("selctx %s ", info->u.sel.selctx);\
84 exit_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode);
91 struct xt_secmark_target_info *info = local
95 print_secmark(info);
98 /* Saves the target info in parsable form to stdout. *
101 struct xt_secmark_target_info *info = local
    [all...]
libipt_SECMARK.c 42 struct xt_secmark_target_info *info = local
50 info->mode = SECMARK_MODE_SEL;
58 strcpy(info->u.sel.selctx, optarg);
74 static void print_secmark(struct xt_secmark_target_info *info)
76 switch (info->mode) {
78 printf("selctx %s ", info->u.sel.selctx);\
82 exit_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode);
89 struct xt_secmark_target_info *info = local
93 print_secmark(info);
96 /* Saves the target info in parsable form to stdout. *
99 struct xt_secmark_target_info *info = local
    [all...]
  /external/proguard/src/proguard/optimize/info/
AccessMethodMarker.java 21 package proguard.optimize.info;
130 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
131 if (info != null)
133 info.setAccessesPrivateCode();
143 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
144 return info == null || info.accessesPrivateCode();
150 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
151 if (info != null)
153 info.setAccessesPackageCode()
164 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
171 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
184 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local
    [all...]
  /external/skia/src/animator/
SkDisplayable.cpp 87 const SkMemberInfo* info; local
89 info = copy->getMember(++index);
90 if (info == NULL)
92 if (info->fType == SkType_MemberProperty) {
99 if (info->fType == SkType_MemberFunction)
101 if (info->fType == SkType_Array) {
102 SkTDOperandArray* array = (SkTDOperandArray*) info->memberData(this);
106 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
113 elementType = info->arrayType();
119 if (SkDisplayType::IsDisplayable(maker, info->fType))
163 const SkMemberInfo* info; local
269 const SkMemberInfo* info; local
    [all...]
  /external/e2fsprogs/lib/ss/
request_tbl.c 28 register ss_data *info; local
31 info = ss_info(sci_idx);
32 for (size=0; info->rqt_tables[size] != (ssrt *)NULL; size++)
36 info->rqt_tables = (ssrt **)realloc(info->rqt_tables,
38 if (info->rqt_tables == (ssrt **)NULL) {
47 info->rqt_tables[i+1] = info->rqt_tables[i];
49 info->rqt_tables[position] = rqtbl_ptr;
50 info->rqt_tables[size-1] = (ssrt *)NULL
59 register ss_data *info; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/bsd/
SDL_bsdaudio.c 248 audio_info_t info; local
250 if(ioctl(audio_fd, AUDIO_GETINFO, &info) < 0) {
256 "[play/record info]\n"
270 info.play.buffer_size,
271 info.play.sample_rate,
272 info.play.channels,
273 info.play.precision,
274 info.play.encoding,
275 info.play.seek,
276 info.play.samples
306 audio_info_t info; local
    [all...]
  /external/webkit/WebKit/chromium/src/
WebPluginListBuilderImpl.cpp 44 PluginInfo* info = new PluginInfo(); local
45 info->name = name;
46 info->desc = description;
47 info->file = fileName;
48 m_results->append(info);
53 MimeClassInfo* info = new MimeClassInfo(); local
54 info->type = name;
55 info->desc = description;
56 m_results->last()->mimes.append(info);
61 MimeClassInfo* info = m_results->last()->mimes.last() local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ApplicationInfo.java 65 public ApplicationInfo(ResolveInfo info, IconCache iconCache) {
67 info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
74 iconCache.getTitleAndIcon(this, info);
77 public ApplicationInfo(ApplicationInfo info) {
78 super(info);
79 componentName = info.componentName;
80 title = info.title.toString();
81 intent = new Intent(info.intent);
107 for (ApplicationInfo info: list)
    [all...]
  /external/bluetooth/glib/gthread/
gthread-impl.c 86 GMutexDebugInfo *info; local
89 info = G_MUTEX_DEBUG_INFO (retval);
90 g_system_thread_assign (info->owner, zero_thread);
91 info->location = "invalid";
101 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex); local
107 if (g_system_thread_equal (info->owner, self))
110 loc, info->location);
114 g_system_thread_assign (info->owner, self);
115 info->location = loc;
123 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex) local
148 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex); local
173 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex); local
190 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex); local
220 GMutexDebugInfo *info = G_MUTEX_DEBUG_INFO (mutex); local
    [all...]
  /bionic/libc/kernel/common/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /external/bluetooth/glib/tests/bookmarks/
valid-02.xbel 6 <info>
10 <application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
13 </info>
  /external/e2fsprogs/doc/
Makefile.in 16 INFO=makeinfo
19 all:: libext2fs.info libext2fs.dvi
21 install-doc-libs: libext2fs.info libext2fs.dvi
22 @$(RM) -rf $(DESTDIR)$(infodir)/libext2fs.info*
25 -@for i in libext2fs.info* ; do \
29 @echo " GZIP $(infodir)/libext2fs.info*"
30 -@gzip -9 $(DESTDIR)$(infodir)/libext2fs.info*
33 $(RM) -rf $(DESTDIR)$(infodir)/libext2fs.info*
35 libext2fs.info: $(srcdir)/libext2fs.texinfo
37 -@$(INFO) $(srcdir)/libext2fs.texinf
    [all...]

Completed in 122 milliseconds

1 23 4 5 6 7 8 91011>>