Home
last modified time | relevance | path

Searched refs:full_name (Results 1 – 2 of 2) sorted by relevance

/build/make/tools/releasetools/
Dota_metadata_pb2.py30 full_name='build.tools.releasetools.OtaMetadata.OtaType',
61 full_name='build.tools.releasetools.PartitionState',
67 …name='partition_name', full_name='build.tools.releasetools.PartitionState.partition_name', index=0,
74 name='device', full_name='build.tools.releasetools.PartitionState.device', index=1,
81 name='build', full_name='build.tools.releasetools.PartitionState.build', index=2,
88 name='version', full_name='build.tools.releasetools.PartitionState.version', index=3,
113 full_name='build.tools.releasetools.DeviceState',
119 name='device', full_name='build.tools.releasetools.DeviceState.device', index=0,
126 name='build', full_name='build.tools.releasetools.DeviceState.build', index=1,
133 …name='build_incremental', full_name='build.tools.releasetools.DeviceState.build_incremental', inde…
[all …]
/build/make/tools/fs_config/
Dfs_config.c151 char* full_name = (char*) malloc(full_name_size); in main() local
152 if (full_name == NULL) { in main()
157 full_name[0] = '/'; in main()
158 strncpy(full_name + 1, buffer, full_name_size - 1); in main()
159 full_name[full_name_size - 1] = '\0'; in main()
162 if (selabel_lookup(sehnd, &secontext, full_name, ( mode | (is_dir ? S_IFDIR : S_IFREG)))) { in main()
167 free(full_name); in main()