/prebuilt/windows/sdl/host/include/SDL/ |
SDL_syswm.h | 96 } info; member in struct:SDL_SysWMinfo 188 * It fills the structure pointed to by 'info' with custom information and 190 * the version member of the 'info' structure is invalid, it returns 0. 193 * SDL_SysWMInfo info; 194 * SDL_VERSION(&info.version); 195 * if ( SDL_GetWMInfo(&info) ) { ... } 197 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_syswm.h | 104 } info; member in struct:SDL_SysWMinfo 196 * It fills the structure pointed to by 'info' with custom information and 198 * the version member of the 'info' structure is invalid, it returns 0. 201 * SDL_SysWMInfo info; 202 * SDL_VERSION(&info.version); 203 * if ( SDL_GetWMInfo(&info) ) { ... } 205 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutRefactoringTest.java | 113 TestContext info = setupTestContext(file, basename); local 114 TestLayoutEditor layoutEditor = info.mLayoutEditor; 115 CanvasViewInfo rootView = info.mRootView; 116 Element element = info.mElement;
|
/system/core/fastboot/ |
usb_windows.c | 273 struct usb_ifc_info info; local 297 info.dev_vendor = device_desc.idVendor; 298 info.dev_product = device_desc.idProduct; 299 info.dev_class = device_desc.bDeviceClass; 300 info.dev_subclass = device_desc.bDeviceSubClass; 301 info.dev_protocol = device_desc.bDeviceProtocol; 302 info.ifc_class = interf_desc.bInterfaceClass; 303 info.ifc_subclass = interf_desc.bInterfaceSubClass; 304 info.ifc_protocol = interf_desc.bInterfaceProtocol; 305 info.writable = 1 [all...] |
/system/core/toolbox/ |
lsof.c | 71 void print_type(char *type, struct pid_info_t* info) 76 strncat(info->path, type, sizeof(info->path)); 77 if ((link_dest_size = readlink(info->path, link_dest, sizeof(link_dest)-1)) < 0) { 81 snprintf(link_dest, sizeof(link_dest), "%s (readlink: %s)", info->path, strerror(errno)); 91 info->cmdline, info->pid, info->user, type, 95 info->path[info->parent_length] = '\0' 169 struct pid_info_t info; local [all...] |
/system/extras/bugmailer/src/com/android/commands/sendbug/ |
SendBug.java | 95 final ResolveInfo info = results.get(0); local 97 intent.setClassName(info.activityInfo.applicationInfo.packageName, 98 info.activityInfo.name);
|
/development/samples/training/multiscreen/newsreader/libs/ |
android-support-v4.jar | |
/frameworks/base/services/java/com/android/server/ |
TextServicesManagerService.java | 355 private void startSpellCheckerServiceInnerLocked(SpellCheckerInfo info, String locale, 361 final String sciId = info.getId(); 365 serviceIntent.setComponent(info.getComponent()); 367 Slog.w(TAG, "bind service: " + info.getId()); 535 SpellCheckerInfo info = ent.getValue(); local 536 pw.print(" "); pw.print("id="); pw.println(info.getId()); 538 pw.println(info.getComponent().toShortString()); 539 int NS = info.getSubtypeCount(); 541 SpellCheckerSubtype st = info.getSubtypeAt(i); [all...] |
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiSettings.java | 193 NetworkInfo info = connectivity.getNetworkInfo( local 195 changeNextButtonState(info.isConnected()); 325 public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo info) { 327 ((WifiSettingsForSetupWizardXL)getActivity()).onCreateContextMenu(menu, view, info); 328 } else if (info instanceof AdapterContextMenuInfo) { 330 ((AdapterContextMenuInfo) info).position); 577 NetworkInfo info = (NetworkInfo) intent.getParcelableExtra( local 579 mConnected.set(info.isConnected()); 580 changeNextButtonState(info.isConnected()); 582 updateConnectionState(info.getDetailedState()) [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
NetworkStatsServiceTest.java | 890 final NetworkInfo info = new NetworkInfo(TYPE_WIFI, 0, null, null); local 898 final NetworkInfo info = new NetworkInfo( local 907 final NetworkInfo info = new NetworkInfo(TYPE_WIMAX, 0, null, null); local [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadService.java | 65 * The Service's view of the list of downloads, mapping download IDs to the corresponding info 312 DownloadInfo info = mDownloads.get(id); local 313 if (info != null) { 314 updateDownload(reader, info, now); 316 info = insertDownload(reader, now); 319 if (info.shouldScanFile() && !scanFile(info, true, false)) { 323 if (info.hasCompletionNotification()) { 326 long next = info.nextAction(now); 344 for (DownloadInfo info : mDownloads.values()) 428 DownloadInfo info = reader.newDownloadInfo(this, mSystemFacade); local 470 DownloadInfo info = mDownloads.get(id); local [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
ManifestTestListAdapter.java | 134 ResolveInfo info = list.get(i); local 135 String parent = getTestParent(info.activityInfo.metaData); 138 matchingList.add(info); 150 ResolveInfo info = list.get(i); local 151 String title = getTitle(mContext, info.activityInfo); 152 String testName = info.activityInfo.name; 153 Intent intent = getActivityIntent(info.activityInfo); 154 String[] requiredFeatures = getRequiredFeatures(info.activityInfo.metaData); 157 String testCategory = getTestCategory(mContext, info.activityInfo.metaData);
|
/cts/tests/tests/app/src/android/app/cts/ |
SystemFeaturesTest.java | 123 CameraInfo info = new CameraInfo(); local 127 Camera.getCameraInfo(i, info); 128 if (info.facing == CameraInfo.CAMERA_FACING_FRONT) {
|
/cts/tools/dasm/src/dasm/ |
DopInfo.java | 116 DopInfo info = new DopInfo(); local 117 info.name = name; 118 info.opcode = opcode; 119 info.args = args; 120 dopsTable.put(name, info);
|
/dalvik/dx/src/com/android/dx/ssa/ |
Dominators.java | 32 * and an addition of a child field to the DFS info. In reality, the constant 37 * of various info about parents. We then use this info to calculate the 38 * dominators, using union-find structures to link together the DFS info, 54 private final DFSInfo[] info; field in class:Dominators 58 /** {@code non-null;} the raw dominator info */ 65 * @param domInfos {@code non-null;} the raw dominator info 66 * @param postdom true for postdom information, false for normal dom info 74 this.info = new DFSInfo[blocks.size() + 2]; 83 * @param domInfos {@code non-null;} the raw dominator info [all...] |
/dalvik/vm/interp/ |
Jit.h | 138 JitEntryInfo info; member in union:JitEntryInfoUnion
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NotesList.java | 304 AdapterView.AdapterContextMenuInfo info; local 309 info = (AdapterView.AdapterContextMenuInfo) menuInfo; 322 Cursor cursor = (Cursor) getListAdapter().getItem(info.position); 344 Integer.toString((int) info.id) )); 363 AdapterView.AdapterContextMenuInfo info; local 366 * Gets the extra info from the menu item. When an note in the Notes list is long-pressed, a 379 info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo(); 389 Uri noteUri = ContentUris.withAppendedId(getIntent().getData(), info.id); 407 getContentResolver(), // resolver to retrieve URI info
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentTabs.java | 128 TabInfo info = new TabInfo(tag, clss, args); local 133 info.fragment = mActivity.getSupportFragmentManager().findFragmentByTag(tag); 134 if (info.fragment != null && !info.fragment.isDetached()) { 136 ft.detach(info.fragment); 140 mTabs.put(tag, info);
|
FragmentTabsPager.java | 135 TabInfo info = new TabInfo(tag, clss, args); local 136 mTabs.add(info); 148 TabInfo info = mTabs.get(position); local 149 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
DeviceDetailFragment.java | 58 private WifiP2pInfo info; field in class:DeviceDetailFragment 133 info.groupOwnerAddress.getHostAddress()); 139 public void onConnectionInfoAvailable(final WifiP2pInfo info) { 143 this.info = info; 149 + ((info.isGroupOwner == true) ? getResources().getString(R.string.yes) 154 view.setText("Group Owner IP - " + info.groupOwnerAddress.getHostAddress()); 159 if (info.groupFormed && info.isGroupOwner) { 162 } else if (info.groupFormed) [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/ |
Main.java | 113 public void info(String msg, Object...params) { method in class:Main.Logger 293 log.info("Classes loaded: %d", classes.size()); 296 log.info("Classes filtered: %d", classes.size());
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
Notepadv2.java | 99 AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo(); local 100 mDbHelper.deleteNote(info.id);
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
Notepadv3.java | 99 AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo(); local 100 mDbHelper.deleteNote(info.id);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
Identity2Test.java | 204 String info = "This is the general information."; local 207 sub.setInfo(info); 208 assertEquals("Wrong Info returned", info, sub.getInfo());
|
/external/bluetooth/bluez/gdbus/ |
mainloop.c | 39 #define info(fmt...) macro 96 struct watch_info *info = data; local 100 dbus_connection_ref(info->conn); 107 dbus_watch_handle(info->watch, flags); 109 status = dbus_connection_get_dispatch_status(info->conn); 110 queue_dispatch(info->conn, status); 112 dbus_connection_unref(info->conn); 119 struct watch_info *info = data; local 121 if (info->id > 0) { 122 g_source_remove(info->id) 136 struct watch_info *info; local [all...] |