OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:gpt_entry_table
(Results
1 - 4
of
4
) sorted by null
/system/core/fastbootd/commands/
partitions.h
62
struct
GPT_entry_table
{
104
struct
GPT_entry_table
* GPT_get_device(const char *, unsigned lba);
106
void GPT_release_device(struct
GPT_entry_table
*);
108
void GPT_edit_entry(struct
GPT_entry_table
*table,
112
int GPT_delete_entry(struct
GPT_entry_table
*table, struct GPT_entry_raw *entry);
114
void GPT_add_entry(struct
GPT_entry_table
*table, struct GPT_entry_raw *entry);
116
struct GPT_entry_raw *GPT_get_pointer(struct
GPT_entry_table
*table, struct GPT_entry_raw *entry);
117
struct GPT_entry_raw *GPT_get_pointer_by_guid(struct
GPT_entry_table
*, const char *);
118
struct GPT_entry_raw *GPT_get_pointer_by_name(struct
GPT_entry_table
*, const char *);
128
void GPT_default_content(struct GPT_content *content, struct
GPT_entry_table
*table)
[
all
...]
partitions.c
108
int GPT_map_from_content(struct
GPT_entry_table
*table, const struct GPT_content *content)
163
int GPT_map(struct
GPT_entry_table
*table, unsigned header_lba)
193
struct
GPT_entry_table
* GPT_get_device(const char *path, unsigned header_lba)
195
struct
GPT_entry_table
*table;
198
table = (struct
GPT_entry_table
*) malloc(sizeof(*table));
222
static struct
GPT_entry_table
* GPT_get_from_content(const char *path, const struct GPT_content *content)
224
struct
GPT_entry_table
*table;
227
table = (struct
GPT_entry_table
*) malloc(sizeof(*table));
252
void GPT_release_device(struct
GPT_entry_table
*table)
262
static int GPT_check_overlap(struct
GPT_entry_table
*table, struct GPT_entry_raw *entry)
[
all
...]
/system/core/fastbootd/other/
gptedit.c
65
void printGPT(struct
GPT_entry_table
*table);
66
void addGPT(struct
GPT_entry_table
*table, const char *arg, const char *guid, const char *tguid);
67
void deleteGPT(struct
GPT_entry_table
*table, const char *name);
68
void configPrintGPT(struct
GPT_entry_table
*table);
152
struct
GPT_entry_table
*table = GPT_get_device(path, gpt_location);
174
void printGPT(struct
GPT_entry_table
*table) {
194
void configPrintGPT(struct
GPT_entry_table
*table) {
239
void addGPT(struct
GPT_entry_table
*table, const char *str , const char *guid, const char *tguid) {
287
void deleteGPT(struct
GPT_entry_table
*table, const char *name) {
/system/core/fastbootd/
commands.c
221
struct
GPT_entry_table
*oldtable;
Completed in 98 milliseconds