Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 36) sorted by relevance

12

/development/tools/winscope/src/common/
Din_memory_storage.ts18 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/
DSingleOTAOptions.vue49 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', [])
DChainOTAOptions.vue44 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', [])
DBatchOTAOptions.vue49 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', [])
DOTAOptions.vue99 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/
Dtree_component.ts100 @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'
Dviewer_input_method_component.ts80 @Input() store: PersistentStore = new PersistentStore(); property in ViewerInputMethodComponent
Dproperties_component.ts135 @Input() store: PersistentStore | undefined; property in PropertiesComponent
/development/tools/otagui/src/
Dmain.js5 import store from './store'
9 app.use(store)
/development/tools/ota_analysis/src/
Dmain.js5 import store from './store'
9 app.use(store)
/development/tools/winscope/src/trace_collection/
Dproxy_connection.ts57 } 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', '');
Dproxy_client.ts119 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/
DCreateGestureActivity.java87 final GestureLibrary store = GestureBuilderActivity.getStore(); in addGesture() local
88 store.addGesture(name.toString(), mGesture); in addGesture()
89 store.save(); in addGesture()
DGestureBuilderActivity.java346 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/
Dtrace_view_component.ts119 @Input() store: PersistentStore | undefined; property in TraceViewComponent
176 (tab.view.htmlElement as any).store = this.store;
Dapp_component.ts335 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/
Drects_component.ts289 @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/
DREADME.md18 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/
Dviewer_window_manager_component.ts74 @Input() store: PersistentStore | undefined; property in ViewerWindowManagerComponent
/development/tools/winscope/src/viewers/viewer_view_capture/
Dviewer_view_capture_component.ts81 @Input() store: PersistentStore | undefined; property in ViewerViewCaptureComponent
/development/samples/browseable/DirectBoot/
D_index.jd8 This sample demonstrates how to store/access data in a device protected storage
/development/tools/winscope/src/viewers/viewer_surface_flinger/
Dviewer_surface_flinger_component.ts100 @Input() store: PersistentStore | undefined; property in ViewerSurfaceFlingerComponent
/development/samples/browseable/BasicAndroidKeyStore/
D_index.jd9 This sample demonstrates how to use the Android Key Store to safely create and store
/development/tools/winscope/src/app/components/timeline/
Dtimeline_component.ts472 @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/
Dant.properties14 # 'key.store' for the location of your keystore and

12