HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 601 - 625 of 1780) sorted by null

<<21222324252627282930>>

  /development/host/windows/usb/api/
adb_api.h 236 @param[out] info Upon successful completion will receive interface
241 addressed by info parameter. On the way out (only if buffer was not
245 ERROR_INSUFFICIENT_BUFFER indicates that buffer provided in info
251 AdbInterfaceInfo* info,
380 @param[out] info Upon successful completion will have endpoint information.
386 AdbEndpointInformation* info);
393 @param[out] info Upon successful completion will have endpoint information.
399 AdbEndpointInformation* info);
406 @param[out] info Upon successful completion will have endpoint information.
412 AdbEndpointInformation* info);
    [all...]
adb_api.cpp 70 AdbInterfaceInfo* info,
84 bool ret = adb_ienum_object->Next(info, size);
290 AdbEndpointInformation* info) {
297 bool ret = adb_object->GetEndpointInformation(endpoint_index, info);
307 AdbEndpointInformation* info) {
310 info);
314 AdbEndpointInformation* info) {
317 info);
375 AdbEndpointInformation* info) {
382 bool ret = adb_object->GetEndpointInformation(info);
    [all...]
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 70 CGBitmapInfo info; local
83 info = kCGImageAlphaPremultipliedLast;
88 info = kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder16Little;
94 info = kCGImageAlphaNone | kCGBitmapByteOrder16Little;
102 bm.rowBytes(), cs, info, data,
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 80 ResolveInfo info = list.get(i); local
81 CharSequence labelSeq = info.loadLabel(pm);
84 : info.activityInfo.name;
94 info.activityInfo.applicationInfo.packageName,
95 info.activityInfo.name));
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 66 public final static String PROPERTY_MODULE = "info.module";
67 public final static String PROPERTY_RELEASE = "info.release";
68 public final static String PROPERTY_TIMESTAMP = "info.timestamp";
74 /** The module from the version info. */
77 /** The release from the version info. */
80 /** The timestamp from the version info. */
83 /** The classloader from which the version info was obtained. */
178 // If version info is missing, a single "UNAVAILABLE" for the module
197 * @param pckgs the packages for which to load version info
244 Properties vip = null; // version info properties, if availabl
    [all...]
  /external/clearsilver/java-jni/
j_neo_util.c 249 FILELOAD_INFO *info = (FILELOAD_INFO *)ctx; local
256 if (hdf != info->hdf)
260 filename_str = (*info->env)->NewStringUTF(info->env, filename);
261 (*info->env)->NewLocalRef(info->env, filename_str);
263 loaded_string = (*info->env)->CallObjectMethod(info->env, info->fl_obj,
264 info->fl_method, filename_str)
    [all...]
  /external/e2fsprogs/
e2fsprogs.spec 39 Prereq: /sbin/install-info
89 if [ -x /sbin/install-info -a -f %{_infodir}/libext2fs.info.gz ]; then
90 /sbin/install-info %{_infodir}/libext2fs.info.gz %{_infodir}/dir
95 if [ $1 = 0 -a -x /sbin/install-info -a -f %{_infodir}/libext2fs.info.gz ]; then
96 /sbin/install-info --delete %{_infodir}/libext2fs.info.gz %{_infodir}/dir
173 %{_infodir}/libext2fs.info*
    [all...]
  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_huffman_parsing.cpp 48 mp3Header *info mp3 header info
129 mp3Header *info)
146 sfreq = info->sampling_frequency + info->version_x + (info->version_x << 1);
153 if (info->version_x == MPEG_1)
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 180 if ( ! this->info.blit_hw_A ) {
185 if ( ! this->info.blit_hw_CC ) {
210 this->info.blit_fill = 1;
214 this->info.blit_hw = 1;
215 this->info.blit_hw_CC = 1;
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 77 TPvJpgDecInfo info; local
78 TPvJpgDecStatus status = codec->GetInfo(&info);
82 int width = info.iWidth[0];
83 int height = info.iHeight[0];
92 SkASSERT(info.iNumComponent == 3);
  /external/skia/src/utils/mac/
SkBitmap_Mac.cpp 70 CGBitmapInfo info; local
83 info = kCGImageAlphaPremultipliedLast;
88 info = kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder16Little;
94 info = kCGImageAlphaNone | kCGBitmapByteOrder16Little;
102 bm.rowBytes(), cs, info, data,
  /external/webkit/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 155 v8::Handle<v8::Value> V8CSSStyleDeclaration::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
159 if (info.Holder()->HasRealNamedCallbackProperty(name))
163 CSSStyleDeclaration* imp = V8CSSStyleDeclaration::toNative(info.Holder());
193 v8::Handle<v8::Value> V8CSSStyleDeclaration::namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
196 CSSStyleDeclaration* imp = V8CSSStyleDeclaration::toNative(info.Holder());
V8DocumentCustom.cpp 122 v8::Handle<v8::Value> V8Document::implementationAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
124 ASSERT(info.Holder()->InternalFieldCount() >= internalFieldCount);
127 v8::Local<v8::Value> implementation = info.Holder()->GetInternalField(V8Document::implementationIndex);
132 Document* document = V8Document::toNative(info.Holder());
136 info.Holder()->SetInternalField(implementationIndex, wrapper);
  /external/webkit/WebCore/platform/graphics/gtk/
ImageGtk.cpp 37 template <> void freeOwnedGPtr<GtkIconInfo>(GtkIconInfo* info)
39 if (info)
40 gtk_icon_info_free(info);
57 GOwnPtr<GtkIconInfo> info(iconInfo);
58 return CString(gtk_icon_info_get_filename(info.get()));
  /external/webkit/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 128 MainThreadPACCallbackInfo info(handle, proxyList);
130 callOnMainThreadAndWait(pacExecutionCallbackMainThread, &info);
135 MainThreadPACCallbackInfo* info = static_cast<MainThreadPACCallbackInfo*>(invocation); local
136 ASSERT(info->handle->m_connectingSubstate == ExecutingPACFile);
138 info->handle->chooseProxyFromArray(info->proxyList);
139 info->handle->createStreams();
140 info->handle->scheduleStreams();
429 CFStringRef SocketStreamHandle::copyCFStreamDescription(void* info)
431 SocketStreamHandle* handle = static_cast<SocketStreamHandle*>(info);
470 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation); local
476 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation); local
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
PasteboardHelperGtk.cpp 83 static void fillSelectionData(GtkSelectionData* selectionData, guint info, DataObjectGtk* dataObject)
85 if (info == WEBKIT_WEB_VIEW_TARGET_INFO_TEXT)
87 else if (info == WEBKIT_WEB_VIEW_TARGET_INFO_HTML) {
110 static void getClipboardContentsCallback(GtkClipboard* clipboard, GtkSelectionData *selectionData, guint info, gpointer data)
114 fillSelectionData(selectionData, info, dataObject);
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_huffman_parsing.cpp 48 mp3Header *info mp3 header info
129 mp3Header *info)
146 sfreq = info->sampling_frequency + info->version_x + (info->version_x << 1);
153 if (info->version_x == MPEG_1)
  /frameworks/base/tests/DumpRenderTree/assets/
run_page_cycler.py 27 log_level = logging.INFO
44 logging.info("Running the test ...")
85 logging.info(adb_output);
86 logging.info(adb_error);
87 logging.info("Done\n");
108 logging.info("Results are stored under: " + results_dir + "/load_test_result.txt\n")
  /external/webkit/WebCore/bindings/js/
JSWebGLRenderingContextCustom.cpp 106 static JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, const WebGLGetInfo& info)
108 switch (info.getType()) {
110 return jsBoolean(info.getBool());
112 return jsNumber(exec, info.getFloat());
114 return jsNumber(exec, info.getLong());
118 return jsString(exec, info.getString());
120 return jsNumber(exec, info.getUnsignedLong());
122 return toJS(exec, globalObject, info.getWebGLBuffer());
124 return toJS(exec, globalObject, info.getWebGLFloatArray());
126 return toJS(exec, globalObject, info.getWebGLFramebuffer())
    [all...]
  /external/qemu/
arm-dis.c     [all...]
  /build/tools/releasetools/
sign_target_files_apks 105 for info in input_tf_zip.infolist():
106 if info.filename.endswith(".apk"):
107 name = os.path.basename(info.filename)
139 for info in input_tf_zip.infolist():
140 data = input_tf_zip.read(info.filename)
141 out_info = copy.copy(info)
142 if info.filename.endswith(".apk"):
143 name = os.path.basename(info.filename)
153 elif info.filename in ("SYSTEM/build.prop",
155 print "rewriting %s:" % (info.filename,
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ClassMerger.java 29 import proguard.optimize.info.*;
273 ClassOptimizationInfo info = local
275 if (info != null)
277 info.merge(ClassOptimizationInfo.getClassOptimizationInfo(programClass));
511 ClassOptimizationInfo info = ClassOptimizationInfo.getClassOptimizationInfo(clazz); local
512 if (info != null)
514 info.setTargetClass(targetClass);
526 ClassOptimizationInfo info = ClassOptimizationInfo.getClassOptimizationInfo(clazz); local
527 if (info == null)
532 clazz = info.getTargetClass()
    [all...]
  /external/webkit/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 51 // Protect against large PNGs. See Mozilla's bug #251381 for more info.
224 void headerAvailable(png_structp png, png_infop info)
237 png_infop info = m_reader->infoPtr(); local
259 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType,
271 if (png_get_valid(png, info, PNG_INFO_tRNS)) {
272 png_get_tRNS(png, info, &trns, &trnsCount, 0);
285 if (png_get_gAMA(png, info, &gamma)) {
288 png_set_gAMA(png, info, gamma);
299 // Update our info now
300 png_read_update_info(png, info);
    [all...]
  /external/tcpdump/
print-decnet.c 183 int src, dst, info, blksize, eco, ueco, hello, other, vers; local
196 info = EXTRACT_LE_8BITS(cmp->cm_init.in_info);
202 print_t_info(info);
260 info = EXTRACT_LE_8BITS(cmp->cm_rhello.rh_info);
264 print_i_info(info);
283 info = EXTRACT_LE_8BITS(cmp->cm_ehello.eh_info);
291 print_i_info(info);
312 print_t_info(int info)
314 int ntype = info & 3;
321 if (info & TI_VERIF
332 int info; local
362 int info; local
659 int services, info, segsize; local
712 int services, info; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizard.java 396 IMainInfo info = mMainPage.getMainInfo(); local
399 final IProject project = workspace.getRoot().getProject(info.getProjectName());
403 mPackageName = info.getPackageName();
406 parameters.put(PARAM_PROJECT, info.getProjectName());
410 parameters.put(PARAM_IS_NEW_PROJECT, info.isNewProject());
411 parameters.put(PARAM_SRC_FOLDER, info.getSourceFolder());
412 parameters.put(PARAM_SDK_TARGET, info.getSdkTarget());
413 parameters.put(PARAM_MIN_SDK_VERSION, info.getMinSdkVersion());
415 if (info.isCreateActivity()) {
418 String activityName = info.getActivityName()
455 TestInfo info = mTestPage.getTestInfo(); local
    [all...]

Completed in 491 milliseconds

<<21222324252627282930>>