!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-4.15.0-213/include/linux/   drwxr-xr-x
Free 9.92 GB of 61.93 GB (16.02%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ste_modem_shm.h (1.59 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * Copyright (C) ST-Ericsson AB 2012
 * Author: Sjur Brendeland / sjur.brandeland@stericsson.com
 *
 * License terms: GNU General Public License (GPL) version 2
 */

#ifndef __INC_MODEM_DEV_H
#define __INC_MODEM_DEV_H
#include <linux/types.h>
#include <linux/platform_device.h>

struct ste_modem_device;

/**
 * struct ste_modem_dev_cb - Callbacks for modem initiated events.
 * @kick: Called when the modem kicks the host.
 *
 * This structure contains callbacks for actions triggered by the modem.
 */
struct ste_modem_dev_cb {
    void (*kick)(struct ste_modem_device *mdev, int notify_id);
};

/**
 * struct ste_modem_dev_ops - Functions to control modem and modem interface.
 *
 * @power:    Main power switch, used for cold-start or complete power off.
 * @kick:    Kick the modem.
 * @kick_subscribe: Subscribe for notifications from the modem.
 * @setup:    Provide callback functions to modem device.
 *
 * This structure contains functions used by the ste remoteproc driver
 * to manage the modem.
 */
struct ste_modem_dev_ops {
    int (*power)(struct ste_modem_device *mdev, bool on);
    int (*kick)(struct ste_modem_device *mdev, int notify_id);
    int (*kick_subscribe)(struct ste_modem_device *mdev, int notify_id);
    int (*setup)(struct ste_modem_device *mdev,
             struct ste_modem_dev_cb *cfg);
};

/**
 * struct ste_modem_device - represent the STE modem device
 * @pdev: Reference to platform device
 * @ops: Operations used to manage the modem.
 * @drv_data: Driver private data.
 */
struct ste_modem_device {
    struct platform_device pdev;
    struct ste_modem_dev_ops ops;
    void *drv_data;
};

#endif /*INC_MODEM_DEV_H*/

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.5043 ]--