Home
last modified time | relevance | path

Searched refs:command_name (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xmlstarlet/files/
H A D0001-usage2c.awk-fix-wrong-basename-regexp.patch27 length(command_name) == 0 {
28 command_name = FILENAME;
29 sub(/\.txt$/, "", command_name);
30 - sub(/^([^\/]+\/)*/, "", command_name);
31 + sub(/^.*\//, "", command_name);
32 gsub(/-/, "_", command_name);
33 printf("static const char %s[] = {\n", command_name);
/openbmc/linux/drivers/net/ethernet/qualcomm/rmnet/
H A Drmnet_map_command.c79 unsigned char command_name; in rmnet_map_command() local
84 command_name = cmd->command_name; in rmnet_map_command()
86 switch (command_name) { in rmnet_map_command()
H A Drmnet_map.h10 u8 command_name; member
/openbmc/qemu/tests/qtest/libqos/
H A Dahci.c794 static AHCICommandProp *ahci_command_find(uint8_t command_name) in ahci_command_find() argument
799 if (ahci_command_properties[i].cmd == command_name) { in ahci_command_find()
901 AHCICommand *ahci_command_create(uint8_t command_name) in ahci_command_create() argument
903 AHCICommandProp *props = ahci_command_find(command_name); in ahci_command_create()
916 cmd->name = command_name; in ahci_command_create()
H A Dahci.h622 AHCICommand *ahci_command_create(uint8_t command_name);