!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-headers-5.15.0-1040/include/soc/qcom/   drwxr-xr-x
Free 83.24 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ocmem.h (1.54 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * The On Chip Memory (OCMEM) allocator allows various clients to allocate
 * memory from OCMEM based on performance, latency and power requirements.
 * This is typically used by the GPU, camera/video, and audio components on
 * some Snapdragon SoCs.
 *
 * Copyright (C) 2019 Brian Masney <[email protected]>
 * Copyright (C) 2015 Red Hat. Author: Rob Clark <[email protected]>
 */

#include <linux/device.h>
#include <linux/err.h>

#ifndef __OCMEM_H__
#define __OCMEM_H__

enum ocmem_client {
    /* GMEM clients */
    OCMEM_GRAPHICS = 0x0,
    /*
     * TODO add more once ocmem_allocate() is clever enough to
     * deal with multiple clients.
     */
    OCMEM_CLIENT_MAX,
};

struct ocmem;

struct ocmem_buf {
    unsigned long offset;
    unsigned long addr;
    unsigned long len;
};

#if IS_ENABLED(CONFIG_QCOM_OCMEM)

struct ocmem *of_get_ocmem(struct device *dev);
struct ocmem_buf *ocmem_allocate(struct ocmem *ocmem, enum ocmem_client client,
                 unsigned long size);
void ocmem_free(struct ocmem *ocmem, enum ocmem_client client,
        struct ocmem_buf *buf);

#else /* IS_ENABLED(CONFIG_QCOM_OCMEM) */

static inline struct ocmem *of_get_ocmem(struct device *dev)
{
    return ERR_PTR(-ENODEV);
}

static inline struct ocmem_buf *ocmem_allocate(struct ocmem *ocmem,
                           enum ocmem_client client,
                           unsigned long size)
{
    return ERR_PTR(-ENODEV);
}

static inline void ocmem_free(struct ocmem *ocmem, enum ocmem_client client,
                  struct ocmem_buf *buf)
{
}

#endif /* IS_ENABLED(CONFIG_QCOM_OCMEM) */

#endif /* __OCMEM_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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--