]> sigrok.org Git - libsigrok.git/commitdiff
sr: s/st*_acquisition/acquisition_st*/.
authorUwe Hermann <redacted>
Sat, 18 Feb 2012 10:46:51 +0000 (11:46 +0100)
committerUwe Hermann <redacted>
Sat, 18 Feb 2012 10:46:51 +0000 (11:46 +0100)
hardware/alsa/alsa.c
hardware/asix-sigma/asix-sigma.c
hardware/chronovu-la8/chronovu-la8.c
hardware/demo/demo.c
hardware/link-mso19/link-mso19.c
hardware/openbench-logic-sniffer/ols.c
hardware/saleae-logic/saleae-logic.c
hardware/zeroplus-logic-cube/zeroplus.c
session.c
session_driver.c
sigrok.h

index 94a95723adc4eea6ddd06df3a5c980f70ada848b..7404ed5b2b1017201416ab002f48cb75cc01bda8 100644 (file)
@@ -290,7 +290,7 @@ static int receive_data(int fd, int revents, void *user_data)
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_start(int dev_index, gpointer session_dev_id)
 {
        struct sr_dev_inst *sdi;
        struct alsa *alsa;
@@ -383,7 +383,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id)
 {
        /* Avoid compiler warnings. */
        dev_index = dev_index;
@@ -404,6 +404,6 @@ SR_PRIV struct sr_dev_plugin alsa_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 77f3e3507787a2797caab5821ee680bfd1632d49..5932c879caa439bf373dd0fa2774b23f085ddc00 100644 (file)
@@ -118,7 +118,7 @@ static const char *firmware_files[] = {
        "asix-sigma-phasor.fw", /* Frequency counter */
 };
 
-static int hw_stop_acquisition(int dev_index, gpointer session_data);
+static int hw_acquisition_stop(int dev_index, gpointer session_data);
 
 static int sigma_read(void *buf, size_t size, struct sigma *sigma)
 {
@@ -1034,7 +1034,7 @@ static int receive_data(int fd, int revents, void *session_data)
                if (running_msec < sigma->limit_msec && numchunks < 32767)
                        return FALSE;
 
-               hw_stop_acquisition(sdi->index, session_data);
+               hw_acquisition_stop(sdi->index, session_data);
 
                return FALSE;
 
@@ -1252,7 +1252,7 @@ static int build_basic_trigger(struct triggerlut *lut, struct sigma *sigma)
        return SR_OK;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct sigma *sigma;
@@ -1369,7 +1369,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_stop(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct sigma *sigma;
@@ -1423,6 +1423,6 @@ SR_PRIV struct sr_dev_plugin asix_sigma_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 67c4f55c2069ade43ad1fefb0c2506ff83008500..6ce6eb4b41078f2b4ef76c057d2d838369955bc2 100644 (file)
@@ -136,7 +136,7 @@ static int hwcaps[] = {
 
 /* Function prototypes. */
 static int la8_close_usb_reset_sequencer(struct la8 *la8);
-static int hw_stop_acquisition(int dev_index, gpointer session_data);
+static int hw_acquisition_stop(int dev_index, gpointer session_data);
 static int la8_reset(struct la8 *la8);
 
 static void fill_supported_samplerates_if_needed(void)
@@ -990,7 +990,7 @@ static int receive_data(int fd, int revents, void *session_data)
        /* Get one block of data. */
        if ((ret = la8_read_block(la8)) < 0) {
                sr_err("la8: %s: la8_read_block error: %d", __func__, ret);
-               hw_stop_acquisition(sdi->index, session_data);
+               hw_acquisition_stop(sdi->index, session_data);
                return FALSE;
        }
 
@@ -1006,13 +1006,13 @@ static int receive_data(int fd, int revents, void *session_data)
        for (i = 0; i < NUM_BLOCKS; i++)
                send_block_to_session_bus(la8, i);
 
-       hw_stop_acquisition(sdi->index, session_data);
+       hw_acquisition_stop(sdi->index, session_data);
 
        // return FALSE; /* FIXME? */
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct la8 *la8;
@@ -1087,7 +1087,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_stop(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct la8 *la8;
@@ -1125,6 +1125,6 @@ SR_PRIV struct sr_dev_plugin chronovu_la8_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 447a2b318ad1da39d10231db25d24ac6d8dbdecb..c1b5b5cf0890321fd7626d67dc2417f2c54d9ce3 100644 (file)
@@ -134,7 +134,7 @@ static int default_pattern = PATTERN_SIGROK;
 static GThread *my_thread;
 static int thread_running;
 
-static int hw_stop_acquisition(int dev_index, gpointer session_data);
+static int hw_acquisition_stop(int dev_index, gpointer session_data);
 
 static int hw_init(const char *devinfo)
 {
@@ -405,7 +405,7 @@ static int receive_data(int fd, int revents, void *session_data)
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_datafeed_packet *packet;
        struct sr_datafeed_header *header;
@@ -477,7 +477,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_stop(int dev_index, gpointer session_data)
 {
        /* Avoid compiler warnings. */
        (void)dev_index;
@@ -501,6 +501,6 @@ SR_PRIV struct sr_dev_plugin demo_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 91e60f670be0743531014f5b2b9aeec6d9aa552c..d6cfbc40854601d4068c61ed35d14a2fbef6d065 100644 (file)
@@ -743,7 +743,7 @@ static int receive_data(int fd, int revents, void *user_data)
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_start(int dev_index, gpointer session_dev_id)
 {
        struct sr_dev_inst *sdi;
        struct mso *mso;
@@ -817,7 +817,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
 }
 
 /* FIXME */
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id)
 {
        struct sr_datafeed_packet packet;
 
@@ -841,6 +841,6 @@ SR_PRIV struct sr_dev_plugin link_mso19_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 76f82f99a5817922cfeb948da3deae8894072cb5..6d5fc8ba3a9da5e033ad24c5737ef6fac8a2d214 100644 (file)
@@ -871,7 +871,7 @@ static int receive_data(int fd, int revents, void *session_data)
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_datafeed_packet *packet;
        struct sr_datafeed_header *header;
@@ -1024,7 +1024,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id)
 {
        struct sr_datafeed_packet packet;
 
@@ -1049,6 +1049,6 @@ SR_PRIV struct sr_dev_plugin ols_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index b23bbbd7ab0ec1fdc9daf6bfde526fc244f5c84d..d0cbc4dd5cc3947e113d3e1e6ceacc5d22e0cbed 100644 (file)
@@ -94,7 +94,7 @@ static libusb_context *usb_context = NULL;
 static int new_saleae_logic_firmware = 0;
 
 static int hw_config_set(int dev_index, int hwcap, void *value);
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id);
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id);
 
 /**
  * Check the USB configuration to determine if this is a Saleae Logic.
@@ -680,7 +680,7 @@ static void receive_transfer(struct libusb_transfer *transfer)
        int cur_buflen, trigger_offset, i;
        unsigned char *cur_buf, *new_buf;
 
-       /* hw_stop_acquisition() is telling us to stop. */
+       /* hw_acquisition_stop() is telling us to stop. */
        if (transfer == NULL)
                num_samples = -1;
 
@@ -723,7 +723,7 @@ static void receive_transfer(struct libusb_transfer *transfer)
                         * The FX2 gave up. End the acquisition, the frontend
                         * will work out that the samplecount is short.
                         */
-                       hw_stop_acquisition(-1, fx2->session_data);
+                       hw_acquisition_stop(-1, fx2->session_data);
                }
                return;
        } else {
@@ -797,7 +797,7 @@ static void receive_transfer(struct libusb_transfer *transfer)
 
                num_samples += cur_buflen;
                if (fx2->limit_samples && (unsigned int) num_samples > fx2->limit_samples) {
-                       hw_stop_acquisition(-1, fx2->session_data);
+                       hw_acquisition_stop(-1, fx2->session_data);
                }
        } else {
                /*
@@ -807,7 +807,7 @@ static void receive_transfer(struct libusb_transfer *transfer)
        }
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct sr_datafeed_packet *packet;
@@ -873,7 +873,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
 }
 
 /* This stops acquisition on ALL devices, ignoring dev_index. */
-static int hw_stop_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_stop(int dev_index, gpointer session_data)
 {
        struct sr_datafeed_packet packet;
 
@@ -902,6 +902,6 @@ SR_PRIV struct sr_dev_plugin saleae_logic_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 8bb7d1ed1cf8a2fa4c36bf1a03b54fde61dd3212..5ca36e54e9e48276e053c5c71eb673e5e335ed6b 100644 (file)
@@ -627,7 +627,7 @@ static int hw_config_set(int dev_index, int hwcap, void *value)
        }
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_data)
+static int hw_acquisition_start(int dev_index, gpointer session_data)
 {
        struct sr_dev_inst *sdi;
        struct sr_datafeed_packet packet;
@@ -703,7 +703,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_data)
 }
 
 /* This stops acquisition on ALL devices, ignoring dev_index. */
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id)
 {
        struct sr_datafeed_packet packet;
        struct sr_dev_inst *sdi;
@@ -740,6 +740,6 @@ SR_PRIV struct sr_dev_plugin zeroplus_logic_cube_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };
index 1ddd2cc24444c4a3e7eea36f0ff9cec598661b33..e129da9efd76db9673ff8c1b750c663f69c2c5ac 100644 (file)
--- a/session.c
+++ b/session.c
@@ -276,7 +276,7 @@ SR_API int sr_session_start(void)
        for (l = session->devs; l; l = l->next) {
                dev = l->data;
                /* TODO: Check for dev != NULL. */
-               if ((ret = dev->plugin->start_acquisition(
+               if ((ret = dev->plugin->acquisition_start(
                                dev->plugin_index, dev)) != SR_OK) {
                        sr_err("session: %s: could not start an acquisition "
                               "(%d)", __func__, ret);
@@ -373,8 +373,8 @@ SR_API int sr_session_stop(void)
                dev = l->data;
                /* Check for dev != NULL. */
                if (dev->plugin) {
-                       if (dev->plugin->stop_acquisition)
-                               dev->plugin->stop_acquisition(dev->plugin_index, dev);
+                       if (dev->plugin->acquisition_stop)
+                               dev->plugin->acquisition_stop(dev->plugin_index, dev);
                        if (dev->plugin->cleanup)
                                dev->plugin->cleanup();
                }
index e8c4d2ecb48f220c0ac461ade466df6edc5f1252..369c95a4540b107df750d482b7697626ac58f999 100644 (file)
@@ -269,7 +269,7 @@ static int hw_config_set(int dev_index, int hwcap, void *value)
        return SR_OK;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_start(int dev_index, gpointer session_dev_id)
 {
        struct zip_stat zs;
        struct session_vdev *vdev;
@@ -343,6 +343,6 @@ SR_PRIV struct sr_dev_plugin session_driver = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = NULL,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = NULL,
 };
index 256ed32e2291bc13abc4a2f9af4ad406d5b8dd06..4e69215dc4825337e3c22833604f41d48270bf53 100644 (file)
--- a/sigrok.h
+++ b/sigrok.h
@@ -353,8 +353,8 @@ struct sr_dev_plugin {
        int (*get_status) (int dev_index);
        int *(*hwcap_get_all) (void);
        int (*config_set) (int dev_index, int hwcap, void *value);
-       int (*start_acquisition) (int dev_index, gpointer session_dev_id);
-       int (*stop_acquisition) (int dev_index, gpointer session_dev_id);
+       int (*acquisition_start) (int dev_index, gpointer session_dev_id);
+       int (*acquisition_stop) (int dev_index, gpointer session_dev_id);
 };
 
 struct sr_session {