/development/tools/winscope/src/common/ |
D | in_memory_storage.ts | 18 private store: {[key: string]: string} = {}; property in InMemoryStorage 22 return Object.keys(this.store).length; 29 return this.store[key]; 32 return Object.keys(this.store)[index]; 35 delete this.store[key]; 38 this.store[key] = value;
|
/development/tools/otagui/src/components/ |
D | SingleOTAOptions.vue | 49 return this.$store.state.otaConfig.isIncremental 53 return this.$store.state.sourceBuilds[0] 56 this.$store.commit('SET_SOURCE', target) 61 return this.$store.state.targetBuilds[0] 64 this.$store.commit('SET_TARGET', target) 77 let data = await this.$store.state.otaConfig.sendForm( 80 this.$store.state.otaConfig.reset() 81 this.$store.commit('SET_TARGETS', []) 82 this.$store.commit('SET_SOURCES', [])
|
D | ChainOTAOptions.vue | 44 return this.$store.state.otaConfig.isIncremental 48 return this.$store.state.targetBuilds 51 this.$store.commit('SET_TARGETS', target) 59 this.$store.commit('SET_ISINCREMENTAL', false) 60 this.$store.commit('SET_SOURCES', []) 65 this.$store.commit('SET_ISINCREMENTAL', false) 66 this.$store.commit('SET_SOURCES', []) 81 let response_data = await this.$store.state.otaConfig 85 this.$store.state.otaConfig.reset() 86 this.$store.commit('SET_TARGETS', [])
|
D | BatchOTAOptions.vue | 49 return this.$store.state.otaConfig.isIncremental 53 return this.$store.state.sourceBuilds 56 this.$store.commit('SET_SOURCES', target) 61 return this.$store.state.targetBuilds 64 this.$store.commit('SET_TARGETS', target) 77 let response_data = await this.$store.state.otaConfig.sendForms( 81 this.$store.state.otaConfig.reset() 82 this.$store.commit('SET_TARGETS', []) 83 this.$store.commit('SET_SOURCES', [])
|
D | OTAOptions.vue | 99 return this.$store.state.otaConfig.isIncremental 105 this.$store.commit('SET_CONFIG', this.otaConfig) 120 this.otaConfig = this.$store.state.otaConfig
|
/development/tools/winscope/src/viewers/components/ |
D | tree_component.ts | 100 @Input() store: InMemoryStorage | undefined; 153 if (this.node.isRoot() && !this.store) { 154 this.store = new InMemoryStorage(); 157 if (this.store) { 248 if (this.useStoredExpandedState && this.store) { 303 if (this.store && this.useStoredExpandedState && shouldUpdateStoredState) { 305 this.store.removeItem(this.storeKeyCollapsedState); 307 this.store.setItem(this.storeKeyCollapsedState, 'true'); 334 assertDefined(this.store).getItem(this.storeKeyCollapsedState) === 'true'
|
D | viewer_input_method_component.ts | 80 @Input() store: PersistentStore = new PersistentStore(); property in ViewerInputMethodComponent
|
D | properties_component.ts | 135 @Input() store: PersistentStore | undefined; property in PropertiesComponent
|
/development/tools/otagui/src/ |
D | main.js | 5 import store from './store' 9 app.use(store)
|
/development/tools/ota_analysis/src/ |
D | main.js | 5 import store from './store' 9 app.use(store)
|
/development/tools/winscope/src/trace_collection/ |
D | proxy_connection.ts | 57 } else if (this.proxy.store.get('adb.proxyKey')) { 58 this.proxy.proxyKey = assertDefined(this.proxy.store.get('adb.proxyKey')); 109 this.proxy.store.add('adb.proxyKey', key); 129 this.proxy.store.add('adb.lastDevice', '');
|
D | proxy_client.ts | 119 const lastKey = client.store.get('adb.proxyKey'); 280 const last = client.store.get('adb.lastDevice'); 319 store = new PersistentStore(); property in ProxyClient 359 this.store.add('adb.lastDevice', device_id);
|
/development/apps/GestureBuilder/src/com/android/gesture/builder/ |
D | CreateGestureActivity.java | 87 final GestureLibrary store = GestureBuilderActivity.getStore(); in addGesture() local 88 store.addGesture(name.toString(), mGesture); in addGesture() 89 store.save(); in addGesture()
|
D | GestureBuilderActivity.java | 346 final GestureLibrary store = sStore; in doInBackground() local 348 if (store.load()) { in doInBackground() 349 for (String name : store.getGestureEntries()) { in doInBackground() 352 for (Gesture gesture : store.getGestures(name)) { in doInBackground()
|
/development/tools/winscope/src/app/components/ |
D | trace_view_component.ts | 119 @Input() store: PersistentStore | undefined; property in TraceViewComponent 176 (tab.view.htmlElement as any).store = this.store;
|
D | app_component.ts | 335 store = new PersistentStore(); property in AppComponent 386 const storeDarkMode = this.store.get('dark-mode'); 503 this.store.add('dark-mode', `${enabled}`); 542 this.store.clear('treeView');
|
/development/tools/winscope/src/viewers/components/rects/ |
D | rects_component.ts | 289 @Input() store?: PersistentStore; 352 const isDarkMode = () => this.store?.get('dark-mode') === 'true'; 369 if (this.store) { 478 const storedZSpacingFactor = assertDefined(this.store).get( 485 const storedShadingMode = assertDefined(this.store).get( 502 this.store?.add(this.storeKeyZSpacingFactor, `${factor}`); 619 this.store?.add(this.storeKeyShadingMode, newMode);
|
/development/tools/otagui/ |
D | README.md | 18 Create a `target` directory to store the target files and a `output` directory 19 to store the output files:
|
/development/tools/winscope/src/viewers/viewer_window_manager/ |
D | viewer_window_manager_component.ts | 74 @Input() store: PersistentStore | undefined; property in ViewerWindowManagerComponent
|
/development/tools/winscope/src/viewers/viewer_view_capture/ |
D | viewer_view_capture_component.ts | 81 @Input() store: PersistentStore | undefined; property in ViewerViewCaptureComponent
|
/development/samples/browseable/DirectBoot/ |
D | _index.jd | 8 This sample demonstrates how to store/access data in a device protected storage
|
/development/tools/winscope/src/viewers/viewer_surface_flinger/ |
D | viewer_surface_flinger_component.ts | 100 @Input() store: PersistentStore | undefined; property in ViewerSurfaceFlingerComponent
|
/development/samples/browseable/BasicAndroidKeyStore/ |
D | _index.jd | 9 This sample demonstrates how to use the Android Key Store to safely create and store
|
/development/tools/winscope/src/app/components/timeline/ |
D | timeline_component.ts | 472 @Input() store: PersistentStore | undefined; property in TimelineComponent 924 const storedDeselectedTraces = this.store?.get( 931 if (!this.store) { 953 this.store.add(
|
/development/samples/training/basic/ActivityLifecycle/ |
D | ant.properties | 14 # 'key.store' for the location of your keystore and
|